Erik Gilling | 010accf | 2012-03-13 15:34:34 -0700 | [diff] [blame] | 1 | /* |
| 2 | * drivers/base/sync.c |
| 3 | * |
| 4 | * Copyright (C) 2012 Google, Inc. |
| 5 | * |
| 6 | * This software is licensed under the terms of the GNU General Public |
| 7 | * License version 2, as published by the Free Software Foundation, and |
| 8 | * may be copied, distributed, and modified under those terms. |
| 9 | * |
| 10 | * This program is distributed in the hope that it will be useful, |
| 11 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 12 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 13 | * GNU General Public License for more details. |
| 14 | * |
| 15 | */ |
| 16 | |
Erik Gilling | 981c8a9 | 2012-03-14 19:49:15 -0700 | [diff] [blame] | 17 | #include <linux/debugfs.h> |
Erik Gilling | 4fb837a | 2012-05-16 13:09:22 -0700 | [diff] [blame] | 18 | #include <linux/export.h> |
Erik Gilling | 010accf | 2012-03-13 15:34:34 -0700 | [diff] [blame] | 19 | #include <linux/file.h> |
| 20 | #include <linux/fs.h> |
| 21 | #include <linux/kernel.h> |
Erik Gilling | a1eeaca | 2012-03-19 17:28:32 -0700 | [diff] [blame] | 22 | #include <linux/poll.h> |
Erik Gilling | 010accf | 2012-03-13 15:34:34 -0700 | [diff] [blame] | 23 | #include <linux/sched.h> |
Erik Gilling | 981c8a9 | 2012-03-14 19:49:15 -0700 | [diff] [blame] | 24 | #include <linux/seq_file.h> |
Erik Gilling | 010accf | 2012-03-13 15:34:34 -0700 | [diff] [blame] | 25 | #include <linux/slab.h> |
| 26 | #include <linux/sync.h> |
| 27 | #include <linux/uaccess.h> |
| 28 | |
| 29 | #include <linux/anon_inodes.h> |
| 30 | |
| 31 | static void sync_fence_signal_pt(struct sync_pt *pt); |
| 32 | static int _sync_pt_has_signaled(struct sync_pt *pt); |
Ajay Dudani | c4af266 | 2012-07-23 16:43:05 -0700 | [diff] [blame] | 33 | static void sync_fence_free(struct kref *kref); |
Ajay Dudani | 442fff4 | 2012-08-24 13:48:57 -0700 | [diff] [blame^] | 34 | static void sync_dump(void); |
Erik Gilling | 010accf | 2012-03-13 15:34:34 -0700 | [diff] [blame] | 35 | |
Erik Gilling | 981c8a9 | 2012-03-14 19:49:15 -0700 | [diff] [blame] | 36 | static LIST_HEAD(sync_timeline_list_head); |
| 37 | static DEFINE_SPINLOCK(sync_timeline_list_lock); |
| 38 | |
| 39 | static LIST_HEAD(sync_fence_list_head); |
| 40 | static DEFINE_SPINLOCK(sync_fence_list_lock); |
| 41 | |
Erik Gilling | 010accf | 2012-03-13 15:34:34 -0700 | [diff] [blame] | 42 | struct sync_timeline *sync_timeline_create(const struct sync_timeline_ops *ops, |
| 43 | int size, const char *name) |
| 44 | { |
| 45 | struct sync_timeline *obj; |
Erik Gilling | 981c8a9 | 2012-03-14 19:49:15 -0700 | [diff] [blame] | 46 | unsigned long flags; |
Erik Gilling | 010accf | 2012-03-13 15:34:34 -0700 | [diff] [blame] | 47 | |
| 48 | if (size < sizeof(struct sync_timeline)) |
| 49 | return NULL; |
| 50 | |
| 51 | obj = kzalloc(size, GFP_KERNEL); |
| 52 | if (obj == NULL) |
| 53 | return NULL; |
| 54 | |
Ajay Dudani | 741cdde | 2012-08-02 17:26:45 -0700 | [diff] [blame] | 55 | kref_init(&obj->kref); |
Erik Gilling | 010accf | 2012-03-13 15:34:34 -0700 | [diff] [blame] | 56 | obj->ops = ops; |
| 57 | strlcpy(obj->name, name, sizeof(obj->name)); |
| 58 | |
| 59 | INIT_LIST_HEAD(&obj->child_list_head); |
| 60 | spin_lock_init(&obj->child_list_lock); |
| 61 | |
| 62 | INIT_LIST_HEAD(&obj->active_list_head); |
| 63 | spin_lock_init(&obj->active_list_lock); |
| 64 | |
Erik Gilling | 981c8a9 | 2012-03-14 19:49:15 -0700 | [diff] [blame] | 65 | spin_lock_irqsave(&sync_timeline_list_lock, flags); |
| 66 | list_add_tail(&obj->sync_timeline_list, &sync_timeline_list_head); |
| 67 | spin_unlock_irqrestore(&sync_timeline_list_lock, flags); |
| 68 | |
Erik Gilling | 010accf | 2012-03-13 15:34:34 -0700 | [diff] [blame] | 69 | return obj; |
| 70 | } |
Erik Gilling | 4fb837a | 2012-05-16 13:09:22 -0700 | [diff] [blame] | 71 | EXPORT_SYMBOL(sync_timeline_create); |
Erik Gilling | 010accf | 2012-03-13 15:34:34 -0700 | [diff] [blame] | 72 | |
Ajay Dudani | 741cdde | 2012-08-02 17:26:45 -0700 | [diff] [blame] | 73 | static void sync_timeline_free(struct kref *kref) |
Erik Gilling | 981c8a9 | 2012-03-14 19:49:15 -0700 | [diff] [blame] | 74 | { |
Ajay Dudani | 741cdde | 2012-08-02 17:26:45 -0700 | [diff] [blame] | 75 | struct sync_timeline *obj = |
| 76 | container_of(kref, struct sync_timeline, kref); |
Erik Gilling | 981c8a9 | 2012-03-14 19:49:15 -0700 | [diff] [blame] | 77 | unsigned long flags; |
| 78 | |
| 79 | if (obj->ops->release_obj) |
| 80 | obj->ops->release_obj(obj); |
| 81 | |
| 82 | spin_lock_irqsave(&sync_timeline_list_lock, flags); |
| 83 | list_del(&obj->sync_timeline_list); |
| 84 | spin_unlock_irqrestore(&sync_timeline_list_lock, flags); |
| 85 | |
| 86 | kfree(obj); |
| 87 | } |
| 88 | |
Erik Gilling | 010accf | 2012-03-13 15:34:34 -0700 | [diff] [blame] | 89 | void sync_timeline_destroy(struct sync_timeline *obj) |
| 90 | { |
Erik Gilling | 010accf | 2012-03-13 15:34:34 -0700 | [diff] [blame] | 91 | obj->destroyed = true; |
Erik Gilling | 010accf | 2012-03-13 15:34:34 -0700 | [diff] [blame] | 92 | |
Ajay Dudani | 741cdde | 2012-08-02 17:26:45 -0700 | [diff] [blame] | 93 | /* |
| 94 | * If this is not the last reference, signal any children |
| 95 | * that their parent is going away. |
| 96 | */ |
| 97 | |
| 98 | if (!kref_put(&obj->kref, sync_timeline_free)) |
Erik Gilling | 010accf | 2012-03-13 15:34:34 -0700 | [diff] [blame] | 99 | sync_timeline_signal(obj); |
| 100 | } |
Erik Gilling | 4fb837a | 2012-05-16 13:09:22 -0700 | [diff] [blame] | 101 | EXPORT_SYMBOL(sync_timeline_destroy); |
Erik Gilling | 010accf | 2012-03-13 15:34:34 -0700 | [diff] [blame] | 102 | |
| 103 | static void sync_timeline_add_pt(struct sync_timeline *obj, struct sync_pt *pt) |
| 104 | { |
| 105 | unsigned long flags; |
| 106 | |
| 107 | pt->parent = obj; |
| 108 | |
| 109 | spin_lock_irqsave(&obj->child_list_lock, flags); |
| 110 | list_add_tail(&pt->child_list, &obj->child_list_head); |
| 111 | spin_unlock_irqrestore(&obj->child_list_lock, flags); |
| 112 | } |
| 113 | |
| 114 | static void sync_timeline_remove_pt(struct sync_pt *pt) |
| 115 | { |
| 116 | struct sync_timeline *obj = pt->parent; |
| 117 | unsigned long flags; |
Erik Gilling | 010accf | 2012-03-13 15:34:34 -0700 | [diff] [blame] | 118 | |
| 119 | spin_lock_irqsave(&obj->active_list_lock, flags); |
| 120 | if (!list_empty(&pt->active_list)) |
| 121 | list_del_init(&pt->active_list); |
| 122 | spin_unlock_irqrestore(&obj->active_list_lock, flags); |
| 123 | |
| 124 | spin_lock_irqsave(&obj->child_list_lock, flags); |
Ajay Dudani | c4af266 | 2012-07-23 16:43:05 -0700 | [diff] [blame] | 125 | if (!list_empty(&pt->child_list)) { |
| 126 | list_del_init(&pt->child_list); |
Ajay Dudani | c4af266 | 2012-07-23 16:43:05 -0700 | [diff] [blame] | 127 | } |
Erik Gilling | 010accf | 2012-03-13 15:34:34 -0700 | [diff] [blame] | 128 | spin_unlock_irqrestore(&obj->child_list_lock, flags); |
Erik Gilling | 010accf | 2012-03-13 15:34:34 -0700 | [diff] [blame] | 129 | } |
| 130 | |
| 131 | void sync_timeline_signal(struct sync_timeline *obj) |
| 132 | { |
| 133 | unsigned long flags; |
| 134 | LIST_HEAD(signaled_pts); |
| 135 | struct list_head *pos, *n; |
| 136 | |
| 137 | spin_lock_irqsave(&obj->active_list_lock, flags); |
| 138 | |
| 139 | list_for_each_safe(pos, n, &obj->active_list_head) { |
| 140 | struct sync_pt *pt = |
| 141 | container_of(pos, struct sync_pt, active_list); |
| 142 | |
Ajay Dudani | c4af266 | 2012-07-23 16:43:05 -0700 | [diff] [blame] | 143 | if (_sync_pt_has_signaled(pt)) { |
| 144 | list_del_init(pos); |
| 145 | list_add(&pt->signaled_list, &signaled_pts); |
| 146 | kref_get(&pt->fence->kref); |
| 147 | } |
Erik Gilling | 010accf | 2012-03-13 15:34:34 -0700 | [diff] [blame] | 148 | } |
| 149 | |
| 150 | spin_unlock_irqrestore(&obj->active_list_lock, flags); |
| 151 | |
| 152 | list_for_each_safe(pos, n, &signaled_pts) { |
| 153 | struct sync_pt *pt = |
Ajay Dudani | c4af266 | 2012-07-23 16:43:05 -0700 | [diff] [blame] | 154 | container_of(pos, struct sync_pt, signaled_list); |
Erik Gilling | 010accf | 2012-03-13 15:34:34 -0700 | [diff] [blame] | 155 | |
| 156 | list_del_init(pos); |
| 157 | sync_fence_signal_pt(pt); |
Ajay Dudani | c4af266 | 2012-07-23 16:43:05 -0700 | [diff] [blame] | 158 | kref_put(&pt->fence->kref, sync_fence_free); |
Erik Gilling | 010accf | 2012-03-13 15:34:34 -0700 | [diff] [blame] | 159 | } |
| 160 | } |
Erik Gilling | 4fb837a | 2012-05-16 13:09:22 -0700 | [diff] [blame] | 161 | EXPORT_SYMBOL(sync_timeline_signal); |
Erik Gilling | 010accf | 2012-03-13 15:34:34 -0700 | [diff] [blame] | 162 | |
| 163 | struct sync_pt *sync_pt_create(struct sync_timeline *parent, int size) |
| 164 | { |
| 165 | struct sync_pt *pt; |
| 166 | |
| 167 | if (size < sizeof(struct sync_pt)) |
| 168 | return NULL; |
| 169 | |
| 170 | pt = kzalloc(size, GFP_KERNEL); |
| 171 | if (pt == NULL) |
| 172 | return NULL; |
| 173 | |
| 174 | INIT_LIST_HEAD(&pt->active_list); |
Ajay Dudani | 741cdde | 2012-08-02 17:26:45 -0700 | [diff] [blame] | 175 | kref_get(&parent->kref); |
Erik Gilling | 010accf | 2012-03-13 15:34:34 -0700 | [diff] [blame] | 176 | sync_timeline_add_pt(parent, pt); |
| 177 | |
| 178 | return pt; |
| 179 | } |
Erik Gilling | 4fb837a | 2012-05-16 13:09:22 -0700 | [diff] [blame] | 180 | EXPORT_SYMBOL(sync_pt_create); |
Erik Gilling | 010accf | 2012-03-13 15:34:34 -0700 | [diff] [blame] | 181 | |
| 182 | void sync_pt_free(struct sync_pt *pt) |
| 183 | { |
| 184 | if (pt->parent->ops->free_pt) |
| 185 | pt->parent->ops->free_pt(pt); |
| 186 | |
| 187 | sync_timeline_remove_pt(pt); |
| 188 | |
Ajay Dudani | 741cdde | 2012-08-02 17:26:45 -0700 | [diff] [blame] | 189 | kref_put(&pt->parent->kref, sync_timeline_free); |
| 190 | |
Erik Gilling | 010accf | 2012-03-13 15:34:34 -0700 | [diff] [blame] | 191 | kfree(pt); |
| 192 | } |
Erik Gilling | 4fb837a | 2012-05-16 13:09:22 -0700 | [diff] [blame] | 193 | EXPORT_SYMBOL(sync_pt_free); |
Erik Gilling | 010accf | 2012-03-13 15:34:34 -0700 | [diff] [blame] | 194 | |
| 195 | /* call with pt->parent->active_list_lock held */ |
| 196 | static int _sync_pt_has_signaled(struct sync_pt *pt) |
| 197 | { |
Erik Gilling | ad433ba | 2012-03-15 14:59:33 -0700 | [diff] [blame] | 198 | int old_status = pt->status; |
| 199 | |
Erik Gilling | 010accf | 2012-03-13 15:34:34 -0700 | [diff] [blame] | 200 | if (!pt->status) |
| 201 | pt->status = pt->parent->ops->has_signaled(pt); |
| 202 | |
| 203 | if (!pt->status && pt->parent->destroyed) |
| 204 | pt->status = -ENOENT; |
| 205 | |
Erik Gilling | ad433ba | 2012-03-15 14:59:33 -0700 | [diff] [blame] | 206 | if (pt->status != old_status) |
| 207 | pt->timestamp = ktime_get(); |
| 208 | |
Erik Gilling | 010accf | 2012-03-13 15:34:34 -0700 | [diff] [blame] | 209 | return pt->status; |
| 210 | } |
| 211 | |
| 212 | static struct sync_pt *sync_pt_dup(struct sync_pt *pt) |
| 213 | { |
| 214 | return pt->parent->ops->dup(pt); |
| 215 | } |
| 216 | |
| 217 | /* Adds a sync pt to the active queue. Called when added to a fence */ |
| 218 | static void sync_pt_activate(struct sync_pt *pt) |
| 219 | { |
| 220 | struct sync_timeline *obj = pt->parent; |
| 221 | unsigned long flags; |
| 222 | int err; |
| 223 | |
| 224 | spin_lock_irqsave(&obj->active_list_lock, flags); |
| 225 | |
| 226 | err = _sync_pt_has_signaled(pt); |
| 227 | if (err != 0) |
| 228 | goto out; |
| 229 | |
| 230 | list_add_tail(&pt->active_list, &obj->active_list_head); |
| 231 | |
| 232 | out: |
| 233 | spin_unlock_irqrestore(&obj->active_list_lock, flags); |
| 234 | } |
| 235 | |
| 236 | static int sync_fence_release(struct inode *inode, struct file *file); |
Erik Gilling | a1eeaca | 2012-03-19 17:28:32 -0700 | [diff] [blame] | 237 | static unsigned int sync_fence_poll(struct file *file, poll_table *wait); |
Erik Gilling | 010accf | 2012-03-13 15:34:34 -0700 | [diff] [blame] | 238 | static long sync_fence_ioctl(struct file *file, unsigned int cmd, |
| 239 | unsigned long arg); |
| 240 | |
| 241 | |
| 242 | static const struct file_operations sync_fence_fops = { |
| 243 | .release = sync_fence_release, |
Erik Gilling | a1eeaca | 2012-03-19 17:28:32 -0700 | [diff] [blame] | 244 | .poll = sync_fence_poll, |
Erik Gilling | 010accf | 2012-03-13 15:34:34 -0700 | [diff] [blame] | 245 | .unlocked_ioctl = sync_fence_ioctl, |
| 246 | }; |
| 247 | |
| 248 | static struct sync_fence *sync_fence_alloc(const char *name) |
| 249 | { |
| 250 | struct sync_fence *fence; |
Erik Gilling | 981c8a9 | 2012-03-14 19:49:15 -0700 | [diff] [blame] | 251 | unsigned long flags; |
Erik Gilling | 010accf | 2012-03-13 15:34:34 -0700 | [diff] [blame] | 252 | |
| 253 | fence = kzalloc(sizeof(struct sync_fence), GFP_KERNEL); |
| 254 | if (fence == NULL) |
| 255 | return NULL; |
| 256 | |
| 257 | fence->file = anon_inode_getfile("sync_fence", &sync_fence_fops, |
| 258 | fence, 0); |
| 259 | if (fence->file == NULL) |
| 260 | goto err; |
| 261 | |
Ajay Dudani | c4af266 | 2012-07-23 16:43:05 -0700 | [diff] [blame] | 262 | kref_init(&fence->kref); |
Erik Gilling | 010accf | 2012-03-13 15:34:34 -0700 | [diff] [blame] | 263 | strlcpy(fence->name, name, sizeof(fence->name)); |
| 264 | |
| 265 | INIT_LIST_HEAD(&fence->pt_list_head); |
| 266 | INIT_LIST_HEAD(&fence->waiter_list_head); |
| 267 | spin_lock_init(&fence->waiter_list_lock); |
| 268 | |
| 269 | init_waitqueue_head(&fence->wq); |
Erik Gilling | 981c8a9 | 2012-03-14 19:49:15 -0700 | [diff] [blame] | 270 | |
| 271 | spin_lock_irqsave(&sync_fence_list_lock, flags); |
| 272 | list_add_tail(&fence->sync_fence_list, &sync_fence_list_head); |
| 273 | spin_unlock_irqrestore(&sync_fence_list_lock, flags); |
| 274 | |
Erik Gilling | 010accf | 2012-03-13 15:34:34 -0700 | [diff] [blame] | 275 | return fence; |
| 276 | |
| 277 | err: |
| 278 | kfree(fence); |
| 279 | return NULL; |
| 280 | } |
| 281 | |
| 282 | /* TODO: implement a create which takes more that one sync_pt */ |
| 283 | struct sync_fence *sync_fence_create(const char *name, struct sync_pt *pt) |
| 284 | { |
| 285 | struct sync_fence *fence; |
| 286 | |
| 287 | if (pt->fence) |
| 288 | return NULL; |
| 289 | |
| 290 | fence = sync_fence_alloc(name); |
| 291 | if (fence == NULL) |
| 292 | return NULL; |
| 293 | |
| 294 | pt->fence = fence; |
| 295 | list_add(&pt->pt_list, &fence->pt_list_head); |
| 296 | sync_pt_activate(pt); |
| 297 | |
| 298 | return fence; |
| 299 | } |
Erik Gilling | 4fb837a | 2012-05-16 13:09:22 -0700 | [diff] [blame] | 300 | EXPORT_SYMBOL(sync_fence_create); |
Erik Gilling | 010accf | 2012-03-13 15:34:34 -0700 | [diff] [blame] | 301 | |
| 302 | static int sync_fence_copy_pts(struct sync_fence *dst, struct sync_fence *src) |
| 303 | { |
| 304 | struct list_head *pos; |
| 305 | |
| 306 | list_for_each(pos, &src->pt_list_head) { |
| 307 | struct sync_pt *orig_pt = |
| 308 | container_of(pos, struct sync_pt, pt_list); |
| 309 | struct sync_pt *new_pt = sync_pt_dup(orig_pt); |
| 310 | |
| 311 | if (new_pt == NULL) |
| 312 | return -ENOMEM; |
| 313 | |
| 314 | new_pt->fence = dst; |
| 315 | list_add(&new_pt->pt_list, &dst->pt_list_head); |
| 316 | sync_pt_activate(new_pt); |
| 317 | } |
| 318 | |
| 319 | return 0; |
| 320 | } |
| 321 | |
Ajay Dudani | 9934319 | 2012-07-11 17:13:50 -0700 | [diff] [blame] | 322 | static int sync_fence_merge_pts(struct sync_fence *dst, struct sync_fence *src) |
| 323 | { |
| 324 | struct list_head *src_pos, *dst_pos, *n; |
| 325 | |
| 326 | list_for_each(src_pos, &src->pt_list_head) { |
| 327 | struct sync_pt *src_pt = |
| 328 | container_of(src_pos, struct sync_pt, pt_list); |
| 329 | bool collapsed = false; |
| 330 | |
| 331 | list_for_each_safe(dst_pos, n, &dst->pt_list_head) { |
| 332 | struct sync_pt *dst_pt = |
| 333 | container_of(dst_pos, struct sync_pt, pt_list); |
| 334 | /* collapse two sync_pts on the same timeline |
| 335 | * to a single sync_pt that will signal at |
| 336 | * the later of the two |
| 337 | */ |
| 338 | if (dst_pt->parent == src_pt->parent) { |
| 339 | if (dst_pt->parent->ops->compare(dst_pt, src_pt) == -1) { |
| 340 | struct sync_pt *new_pt = |
| 341 | sync_pt_dup(src_pt); |
| 342 | if (new_pt == NULL) |
| 343 | return -ENOMEM; |
| 344 | |
| 345 | new_pt->fence = dst; |
| 346 | list_replace(&dst_pt->pt_list, |
| 347 | &new_pt->pt_list); |
| 348 | sync_pt_activate(new_pt); |
| 349 | sync_pt_free(dst_pt); |
| 350 | } |
| 351 | collapsed = true; |
| 352 | break; |
| 353 | } |
| 354 | } |
| 355 | |
| 356 | if (!collapsed) { |
| 357 | struct sync_pt *new_pt = sync_pt_dup(src_pt); |
| 358 | |
| 359 | if (new_pt == NULL) |
| 360 | return -ENOMEM; |
| 361 | |
| 362 | new_pt->fence = dst; |
| 363 | list_add(&new_pt->pt_list, &dst->pt_list_head); |
| 364 | sync_pt_activate(new_pt); |
| 365 | } |
| 366 | } |
| 367 | |
| 368 | return 0; |
| 369 | } |
| 370 | |
Ajay Dudani | c4af266 | 2012-07-23 16:43:05 -0700 | [diff] [blame] | 371 | static void sync_fence_detach_pts(struct sync_fence *fence) |
| 372 | { |
| 373 | struct list_head *pos, *n; |
| 374 | |
| 375 | list_for_each_safe(pos, n, &fence->pt_list_head) { |
| 376 | struct sync_pt *pt = container_of(pos, struct sync_pt, pt_list); |
| 377 | sync_timeline_remove_pt(pt); |
| 378 | } |
| 379 | } |
| 380 | |
Erik Gilling | 010accf | 2012-03-13 15:34:34 -0700 | [diff] [blame] | 381 | static void sync_fence_free_pts(struct sync_fence *fence) |
| 382 | { |
| 383 | struct list_head *pos, *n; |
| 384 | |
| 385 | list_for_each_safe(pos, n, &fence->pt_list_head) { |
| 386 | struct sync_pt *pt = container_of(pos, struct sync_pt, pt_list); |
| 387 | sync_pt_free(pt); |
| 388 | } |
| 389 | } |
| 390 | |
| 391 | struct sync_fence *sync_fence_fdget(int fd) |
| 392 | { |
| 393 | struct file *file = fget(fd); |
| 394 | |
| 395 | if (file == NULL) |
| 396 | return NULL; |
| 397 | |
| 398 | if (file->f_op != &sync_fence_fops) |
| 399 | goto err; |
| 400 | |
| 401 | return file->private_data; |
| 402 | |
| 403 | err: |
| 404 | fput(file); |
| 405 | return NULL; |
| 406 | } |
Erik Gilling | 4fb837a | 2012-05-16 13:09:22 -0700 | [diff] [blame] | 407 | EXPORT_SYMBOL(sync_fence_fdget); |
Erik Gilling | 010accf | 2012-03-13 15:34:34 -0700 | [diff] [blame] | 408 | |
| 409 | void sync_fence_put(struct sync_fence *fence) |
| 410 | { |
| 411 | fput(fence->file); |
| 412 | } |
Erik Gilling | 4fb837a | 2012-05-16 13:09:22 -0700 | [diff] [blame] | 413 | EXPORT_SYMBOL(sync_fence_put); |
Erik Gilling | 010accf | 2012-03-13 15:34:34 -0700 | [diff] [blame] | 414 | |
| 415 | void sync_fence_install(struct sync_fence *fence, int fd) |
| 416 | { |
| 417 | fd_install(fd, fence->file); |
| 418 | } |
Erik Gilling | 4fb837a | 2012-05-16 13:09:22 -0700 | [diff] [blame] | 419 | EXPORT_SYMBOL(sync_fence_install); |
Erik Gilling | 010accf | 2012-03-13 15:34:34 -0700 | [diff] [blame] | 420 | |
| 421 | static int sync_fence_get_status(struct sync_fence *fence) |
| 422 | { |
| 423 | struct list_head *pos; |
| 424 | int status = 1; |
| 425 | |
| 426 | list_for_each(pos, &fence->pt_list_head) { |
| 427 | struct sync_pt *pt = container_of(pos, struct sync_pt, pt_list); |
| 428 | int pt_status = pt->status; |
| 429 | |
| 430 | if (pt_status < 0) { |
| 431 | status = pt_status; |
| 432 | break; |
| 433 | } else if (status == 1) { |
| 434 | status = pt_status; |
| 435 | } |
| 436 | } |
| 437 | |
| 438 | return status; |
| 439 | } |
| 440 | |
| 441 | struct sync_fence *sync_fence_merge(const char *name, |
| 442 | struct sync_fence *a, struct sync_fence *b) |
| 443 | { |
| 444 | struct sync_fence *fence; |
| 445 | int err; |
| 446 | |
| 447 | fence = sync_fence_alloc(name); |
| 448 | if (fence == NULL) |
| 449 | return NULL; |
| 450 | |
| 451 | err = sync_fence_copy_pts(fence, a); |
| 452 | if (err < 0) |
| 453 | goto err; |
| 454 | |
Ajay Dudani | 9934319 | 2012-07-11 17:13:50 -0700 | [diff] [blame] | 455 | err = sync_fence_merge_pts(fence, b); |
Erik Gilling | 010accf | 2012-03-13 15:34:34 -0700 | [diff] [blame] | 456 | if (err < 0) |
| 457 | goto err; |
| 458 | |
| 459 | fence->status = sync_fence_get_status(fence); |
| 460 | |
| 461 | return fence; |
| 462 | err: |
| 463 | sync_fence_free_pts(fence); |
| 464 | kfree(fence); |
| 465 | return NULL; |
| 466 | } |
Erik Gilling | 4fb837a | 2012-05-16 13:09:22 -0700 | [diff] [blame] | 467 | EXPORT_SYMBOL(sync_fence_merge); |
Erik Gilling | 010accf | 2012-03-13 15:34:34 -0700 | [diff] [blame] | 468 | |
| 469 | static void sync_fence_signal_pt(struct sync_pt *pt) |
| 470 | { |
| 471 | LIST_HEAD(signaled_waiters); |
| 472 | struct sync_fence *fence = pt->fence; |
| 473 | struct list_head *pos; |
| 474 | struct list_head *n; |
| 475 | unsigned long flags; |
| 476 | int status; |
| 477 | |
| 478 | status = sync_fence_get_status(fence); |
| 479 | |
| 480 | spin_lock_irqsave(&fence->waiter_list_lock, flags); |
| 481 | /* |
| 482 | * this should protect against two threads racing on the signaled |
| 483 | * false -> true transition |
| 484 | */ |
| 485 | if (status && !fence->status) { |
| 486 | list_for_each_safe(pos, n, &fence->waiter_list_head) |
| 487 | list_move(pos, &signaled_waiters); |
| 488 | |
| 489 | fence->status = status; |
| 490 | } else { |
| 491 | status = 0; |
| 492 | } |
| 493 | spin_unlock_irqrestore(&fence->waiter_list_lock, flags); |
| 494 | |
| 495 | if (status) { |
| 496 | list_for_each_safe(pos, n, &signaled_waiters) { |
| 497 | struct sync_fence_waiter *waiter = |
| 498 | container_of(pos, struct sync_fence_waiter, |
| 499 | waiter_list); |
| 500 | |
Erik Gilling | 010accf | 2012-03-13 15:34:34 -0700 | [diff] [blame] | 501 | list_del(pos); |
Erik Gilling | c80114f | 2012-05-15 16:23:26 -0700 | [diff] [blame] | 502 | waiter->callback(fence, waiter); |
Erik Gilling | 010accf | 2012-03-13 15:34:34 -0700 | [diff] [blame] | 503 | } |
| 504 | wake_up(&fence->wq); |
| 505 | } |
| 506 | } |
| 507 | |
| 508 | int sync_fence_wait_async(struct sync_fence *fence, |
Erik Gilling | c80114f | 2012-05-15 16:23:26 -0700 | [diff] [blame] | 509 | struct sync_fence_waiter *waiter) |
Erik Gilling | 010accf | 2012-03-13 15:34:34 -0700 | [diff] [blame] | 510 | { |
Erik Gilling | 010accf | 2012-03-13 15:34:34 -0700 | [diff] [blame] | 511 | unsigned long flags; |
| 512 | int err = 0; |
| 513 | |
Erik Gilling | 010accf | 2012-03-13 15:34:34 -0700 | [diff] [blame] | 514 | spin_lock_irqsave(&fence->waiter_list_lock, flags); |
| 515 | |
| 516 | if (fence->status) { |
Erik Gilling | 010accf | 2012-03-13 15:34:34 -0700 | [diff] [blame] | 517 | err = fence->status; |
| 518 | goto out; |
| 519 | } |
| 520 | |
| 521 | list_add_tail(&waiter->waiter_list, &fence->waiter_list_head); |
| 522 | out: |
| 523 | spin_unlock_irqrestore(&fence->waiter_list_lock, flags); |
| 524 | |
| 525 | return err; |
| 526 | } |
Erik Gilling | 4fb837a | 2012-05-16 13:09:22 -0700 | [diff] [blame] | 527 | EXPORT_SYMBOL(sync_fence_wait_async); |
Erik Gilling | 010accf | 2012-03-13 15:34:34 -0700 | [diff] [blame] | 528 | |
Erik Gilling | c80114f | 2012-05-15 16:23:26 -0700 | [diff] [blame] | 529 | int sync_fence_cancel_async(struct sync_fence *fence, |
| 530 | struct sync_fence_waiter *waiter) |
| 531 | { |
| 532 | struct list_head *pos; |
| 533 | struct list_head *n; |
| 534 | unsigned long flags; |
| 535 | int ret = -ENOENT; |
| 536 | |
| 537 | spin_lock_irqsave(&fence->waiter_list_lock, flags); |
| 538 | /* |
| 539 | * Make sure waiter is still in waiter_list because it is possible for |
| 540 | * the waiter to be removed from the list while the callback is still |
| 541 | * pending. |
| 542 | */ |
| 543 | list_for_each_safe(pos, n, &fence->waiter_list_head) { |
| 544 | struct sync_fence_waiter *list_waiter = |
| 545 | container_of(pos, struct sync_fence_waiter, |
| 546 | waiter_list); |
| 547 | if (list_waiter == waiter) { |
| 548 | list_del(pos); |
| 549 | ret = 0; |
| 550 | break; |
| 551 | } |
| 552 | } |
| 553 | spin_unlock_irqrestore(&fence->waiter_list_lock, flags); |
| 554 | return ret; |
| 555 | } |
Erik Gilling | 4fb837a | 2012-05-16 13:09:22 -0700 | [diff] [blame] | 556 | EXPORT_SYMBOL(sync_fence_cancel_async); |
Erik Gilling | c80114f | 2012-05-15 16:23:26 -0700 | [diff] [blame] | 557 | |
Erik Gilling | 010accf | 2012-03-13 15:34:34 -0700 | [diff] [blame] | 558 | int sync_fence_wait(struct sync_fence *fence, long timeout) |
| 559 | { |
Ajay Dudani | df53a2ca | 2012-08-21 17:57:19 -0700 | [diff] [blame] | 560 | int err = 0; |
Erik Gilling | 010accf | 2012-03-13 15:34:34 -0700 | [diff] [blame] | 561 | |
Ajay Dudani | df53a2ca | 2012-08-21 17:57:19 -0700 | [diff] [blame] | 562 | if (timeout > 0) { |
Erik Gilling | 010accf | 2012-03-13 15:34:34 -0700 | [diff] [blame] | 563 | timeout = msecs_to_jiffies(timeout); |
| 564 | err = wait_event_interruptible_timeout(fence->wq, |
| 565 | fence->status != 0, |
| 566 | timeout); |
Ajay Dudani | 131ed18 | 2012-08-21 18:43:21 -0700 | [diff] [blame] | 567 | } else if (timeout < 0) { |
Erik Gilling | 010accf | 2012-03-13 15:34:34 -0700 | [diff] [blame] | 568 | err = wait_event_interruptible(fence->wq, fence->status != 0); |
| 569 | } |
| 570 | |
| 571 | if (err < 0) |
| 572 | return err; |
| 573 | |
| 574 | if (fence->status < 0) |
| 575 | return fence->status; |
| 576 | |
Ajay Dudani | 442fff4 | 2012-08-24 13:48:57 -0700 | [diff] [blame^] | 577 | if (fence->status == 0) { |
| 578 | sync_dump(); |
Erik Gilling | 010accf | 2012-03-13 15:34:34 -0700 | [diff] [blame] | 579 | return -ETIME; |
Ajay Dudani | 442fff4 | 2012-08-24 13:48:57 -0700 | [diff] [blame^] | 580 | } |
Erik Gilling | 010accf | 2012-03-13 15:34:34 -0700 | [diff] [blame] | 581 | |
| 582 | return 0; |
| 583 | } |
Erik Gilling | 4fb837a | 2012-05-16 13:09:22 -0700 | [diff] [blame] | 584 | EXPORT_SYMBOL(sync_fence_wait); |
Erik Gilling | 010accf | 2012-03-13 15:34:34 -0700 | [diff] [blame] | 585 | |
Ajay Dudani | c4af266 | 2012-07-23 16:43:05 -0700 | [diff] [blame] | 586 | static void sync_fence_free(struct kref *kref) |
| 587 | { |
| 588 | struct sync_fence *fence = container_of(kref, struct sync_fence, kref); |
| 589 | |
| 590 | sync_fence_free_pts(fence); |
| 591 | |
| 592 | kfree(fence); |
| 593 | } |
| 594 | |
Erik Gilling | 010accf | 2012-03-13 15:34:34 -0700 | [diff] [blame] | 595 | static int sync_fence_release(struct inode *inode, struct file *file) |
| 596 | { |
| 597 | struct sync_fence *fence = file->private_data; |
Erik Gilling | 981c8a9 | 2012-03-14 19:49:15 -0700 | [diff] [blame] | 598 | unsigned long flags; |
Erik Gilling | 010accf | 2012-03-13 15:34:34 -0700 | [diff] [blame] | 599 | |
Ajay Dudani | c4af266 | 2012-07-23 16:43:05 -0700 | [diff] [blame] | 600 | /* |
| 601 | * We need to remove all ways to access this fence before droping |
| 602 | * our ref. |
| 603 | * |
| 604 | * start with its membership in the global fence list |
| 605 | */ |
Erik Gilling | 981c8a9 | 2012-03-14 19:49:15 -0700 | [diff] [blame] | 606 | spin_lock_irqsave(&sync_fence_list_lock, flags); |
| 607 | list_del(&fence->sync_fence_list); |
| 608 | spin_unlock_irqrestore(&sync_fence_list_lock, flags); |
| 609 | |
Ajay Dudani | c4af266 | 2012-07-23 16:43:05 -0700 | [diff] [blame] | 610 | /* |
| 611 | * remove its pts from their parents so that sync_timeline_signal() |
| 612 | * can't reference the fence. |
| 613 | */ |
| 614 | sync_fence_detach_pts(fence); |
Ajay Dudani | 1ee7685 | 2012-07-11 17:07:39 -0700 | [diff] [blame] | 615 | |
Ajay Dudani | c4af266 | 2012-07-23 16:43:05 -0700 | [diff] [blame] | 616 | kref_put(&fence->kref, sync_fence_free); |
Erik Gilling | 010accf | 2012-03-13 15:34:34 -0700 | [diff] [blame] | 617 | |
| 618 | return 0; |
| 619 | } |
| 620 | |
Erik Gilling | a1eeaca | 2012-03-19 17:28:32 -0700 | [diff] [blame] | 621 | static unsigned int sync_fence_poll(struct file *file, poll_table *wait) |
| 622 | { |
| 623 | struct sync_fence *fence = file->private_data; |
| 624 | |
| 625 | poll_wait(file, &fence->wq, wait); |
| 626 | |
| 627 | if (fence->status == 1) |
| 628 | return POLLIN; |
| 629 | else if (fence->status < 0) |
| 630 | return POLLERR; |
| 631 | else |
| 632 | return 0; |
| 633 | } |
| 634 | |
Erik Gilling | 010accf | 2012-03-13 15:34:34 -0700 | [diff] [blame] | 635 | static long sync_fence_ioctl_wait(struct sync_fence *fence, unsigned long arg) |
| 636 | { |
| 637 | __u32 value; |
| 638 | |
| 639 | if (copy_from_user(&value, (void __user *)arg, sizeof(value))) |
| 640 | return -EFAULT; |
| 641 | |
| 642 | return sync_fence_wait(fence, value); |
| 643 | } |
| 644 | |
| 645 | static long sync_fence_ioctl_merge(struct sync_fence *fence, unsigned long arg) |
| 646 | { |
| 647 | int fd = get_unused_fd(); |
| 648 | int err; |
| 649 | struct sync_fence *fence2, *fence3; |
| 650 | struct sync_merge_data data; |
| 651 | |
| 652 | if (copy_from_user(&data, (void __user *)arg, sizeof(data))) |
| 653 | return -EFAULT; |
| 654 | |
| 655 | fence2 = sync_fence_fdget(data.fd2); |
| 656 | if (fence2 == NULL) { |
| 657 | err = -ENOENT; |
| 658 | goto err_put_fd; |
| 659 | } |
| 660 | |
| 661 | data.name[sizeof(data.name) - 1] = '\0'; |
| 662 | fence3 = sync_fence_merge(data.name, fence, fence2); |
| 663 | if (fence3 == NULL) { |
| 664 | err = -ENOMEM; |
| 665 | goto err_put_fence2; |
| 666 | } |
| 667 | |
| 668 | data.fence = fd; |
| 669 | if (copy_to_user((void __user *)arg, &data, sizeof(data))) { |
| 670 | err = -EFAULT; |
| 671 | goto err_put_fence3; |
| 672 | } |
| 673 | |
| 674 | sync_fence_install(fence3, fd); |
| 675 | sync_fence_put(fence2); |
| 676 | return 0; |
| 677 | |
| 678 | err_put_fence3: |
| 679 | sync_fence_put(fence3); |
| 680 | |
| 681 | err_put_fence2: |
| 682 | sync_fence_put(fence2); |
| 683 | |
| 684 | err_put_fd: |
| 685 | put_unused_fd(fd); |
| 686 | return err; |
| 687 | } |
| 688 | |
Erik Gilling | 3913bff | 2012-03-15 17:45:50 -0700 | [diff] [blame] | 689 | static int sync_fill_pt_info(struct sync_pt *pt, void *data, int size) |
| 690 | { |
| 691 | struct sync_pt_info *info = data; |
| 692 | int ret; |
| 693 | |
| 694 | if (size < sizeof(struct sync_pt_info)) |
| 695 | return -ENOMEM; |
| 696 | |
| 697 | info->len = sizeof(struct sync_pt_info); |
| 698 | |
| 699 | if (pt->parent->ops->fill_driver_data) { |
| 700 | ret = pt->parent->ops->fill_driver_data(pt, info->driver_data, |
| 701 | size - sizeof(*info)); |
| 702 | if (ret < 0) |
| 703 | return ret; |
| 704 | |
| 705 | info->len += ret; |
| 706 | } |
| 707 | |
| 708 | strlcpy(info->obj_name, pt->parent->name, sizeof(info->obj_name)); |
| 709 | strlcpy(info->driver_name, pt->parent->ops->driver_name, |
| 710 | sizeof(info->driver_name)); |
| 711 | info->status = pt->status; |
| 712 | info->timestamp_ns = ktime_to_ns(pt->timestamp); |
| 713 | |
| 714 | return info->len; |
| 715 | } |
| 716 | |
| 717 | static long sync_fence_ioctl_fence_info(struct sync_fence *fence, |
| 718 | unsigned long arg) |
| 719 | { |
| 720 | struct sync_fence_info_data *data; |
| 721 | struct list_head *pos; |
| 722 | __u32 size; |
| 723 | __u32 len = 0; |
| 724 | int ret; |
| 725 | |
| 726 | if (copy_from_user(&size, (void __user *)arg, sizeof(size))) |
| 727 | return -EFAULT; |
| 728 | |
| 729 | if (size < sizeof(struct sync_fence_info_data)) |
| 730 | return -EINVAL; |
| 731 | |
| 732 | if (size > 4096) |
| 733 | size = 4096; |
| 734 | |
| 735 | data = kzalloc(size, GFP_KERNEL); |
| 736 | if (data == NULL) |
| 737 | return -ENOMEM; |
| 738 | |
| 739 | strlcpy(data->name, fence->name, sizeof(data->name)); |
| 740 | data->status = fence->status; |
| 741 | len = sizeof(struct sync_fence_info_data); |
| 742 | |
| 743 | list_for_each(pos, &fence->pt_list_head) { |
| 744 | struct sync_pt *pt = |
| 745 | container_of(pos, struct sync_pt, pt_list); |
| 746 | |
| 747 | ret = sync_fill_pt_info(pt, (u8 *)data + len, size - len); |
| 748 | |
| 749 | if (ret < 0) |
| 750 | goto out; |
| 751 | |
| 752 | len += ret; |
| 753 | } |
| 754 | |
| 755 | data->len = len; |
| 756 | |
| 757 | if (copy_to_user((void __user *)arg, data, len)) |
| 758 | ret = -EFAULT; |
| 759 | else |
| 760 | ret = 0; |
| 761 | |
| 762 | out: |
| 763 | kfree(data); |
| 764 | |
| 765 | return ret; |
| 766 | } |
Erik Gilling | 010accf | 2012-03-13 15:34:34 -0700 | [diff] [blame] | 767 | |
| 768 | static long sync_fence_ioctl(struct file *file, unsigned int cmd, |
| 769 | unsigned long arg) |
| 770 | { |
| 771 | struct sync_fence *fence = file->private_data; |
| 772 | switch (cmd) { |
| 773 | case SYNC_IOC_WAIT: |
| 774 | return sync_fence_ioctl_wait(fence, arg); |
| 775 | |
| 776 | case SYNC_IOC_MERGE: |
| 777 | return sync_fence_ioctl_merge(fence, arg); |
Erik Gilling | 981c8a9 | 2012-03-14 19:49:15 -0700 | [diff] [blame] | 778 | |
Erik Gilling | 3913bff | 2012-03-15 17:45:50 -0700 | [diff] [blame] | 779 | case SYNC_IOC_FENCE_INFO: |
| 780 | return sync_fence_ioctl_fence_info(fence, arg); |
| 781 | |
Erik Gilling | 010accf | 2012-03-13 15:34:34 -0700 | [diff] [blame] | 782 | default: |
| 783 | return -ENOTTY; |
| 784 | } |
| 785 | } |
| 786 | |
Erik Gilling | 981c8a9 | 2012-03-14 19:49:15 -0700 | [diff] [blame] | 787 | #ifdef CONFIG_DEBUG_FS |
| 788 | static const char *sync_status_str(int status) |
| 789 | { |
| 790 | if (status > 0) |
| 791 | return "signaled"; |
| 792 | else if (status == 0) |
| 793 | return "active"; |
| 794 | else |
| 795 | return "error"; |
| 796 | } |
| 797 | |
| 798 | static void sync_print_pt(struct seq_file *s, struct sync_pt *pt, bool fence) |
| 799 | { |
| 800 | int status = pt->status; |
| 801 | seq_printf(s, " %s%spt %s", |
| 802 | fence ? pt->parent->name : "", |
| 803 | fence ? "_" : "", |
| 804 | sync_status_str(status)); |
| 805 | if (pt->status) { |
| 806 | struct timeval tv = ktime_to_timeval(pt->timestamp); |
| 807 | seq_printf(s, "@%ld.%06ld", tv.tv_sec, tv.tv_usec); |
| 808 | } |
| 809 | |
| 810 | if (pt->parent->ops->print_pt) { |
| 811 | seq_printf(s, ": "); |
| 812 | pt->parent->ops->print_pt(s, pt); |
| 813 | } |
| 814 | |
| 815 | seq_printf(s, "\n"); |
| 816 | } |
| 817 | |
| 818 | static void sync_print_obj(struct seq_file *s, struct sync_timeline *obj) |
| 819 | { |
| 820 | struct list_head *pos; |
| 821 | unsigned long flags; |
| 822 | |
| 823 | seq_printf(s, "%s %s", obj->name, obj->ops->driver_name); |
| 824 | |
| 825 | if (obj->ops->print_obj) { |
| 826 | seq_printf(s, ": "); |
| 827 | obj->ops->print_obj(s, obj); |
| 828 | } |
| 829 | |
| 830 | seq_printf(s, "\n"); |
| 831 | |
| 832 | spin_lock_irqsave(&obj->child_list_lock, flags); |
| 833 | list_for_each(pos, &obj->child_list_head) { |
| 834 | struct sync_pt *pt = |
| 835 | container_of(pos, struct sync_pt, child_list); |
| 836 | sync_print_pt(s, pt, false); |
| 837 | } |
| 838 | spin_unlock_irqrestore(&obj->child_list_lock, flags); |
| 839 | } |
| 840 | |
| 841 | static void sync_print_fence(struct seq_file *s, struct sync_fence *fence) |
| 842 | { |
| 843 | struct list_head *pos; |
| 844 | unsigned long flags; |
| 845 | |
| 846 | seq_printf(s, "%s: %s\n", fence->name, sync_status_str(fence->status)); |
| 847 | |
| 848 | list_for_each(pos, &fence->pt_list_head) { |
| 849 | struct sync_pt *pt = |
| 850 | container_of(pos, struct sync_pt, pt_list); |
| 851 | sync_print_pt(s, pt, true); |
| 852 | } |
| 853 | |
| 854 | spin_lock_irqsave(&fence->waiter_list_lock, flags); |
| 855 | list_for_each(pos, &fence->waiter_list_head) { |
| 856 | struct sync_fence_waiter *waiter = |
| 857 | container_of(pos, struct sync_fence_waiter, |
| 858 | waiter_list); |
| 859 | |
Erik Gilling | c80114f | 2012-05-15 16:23:26 -0700 | [diff] [blame] | 860 | seq_printf(s, "waiter %pF\n", waiter->callback); |
Erik Gilling | 981c8a9 | 2012-03-14 19:49:15 -0700 | [diff] [blame] | 861 | } |
| 862 | spin_unlock_irqrestore(&fence->waiter_list_lock, flags); |
| 863 | } |
| 864 | |
| 865 | static int sync_debugfs_show(struct seq_file *s, void *unused) |
| 866 | { |
| 867 | unsigned long flags; |
| 868 | struct list_head *pos; |
| 869 | |
| 870 | seq_printf(s, "objs:\n--------------\n"); |
| 871 | |
| 872 | spin_lock_irqsave(&sync_timeline_list_lock, flags); |
| 873 | list_for_each(pos, &sync_timeline_list_head) { |
| 874 | struct sync_timeline *obj = |
| 875 | container_of(pos, struct sync_timeline, |
| 876 | sync_timeline_list); |
| 877 | |
| 878 | sync_print_obj(s, obj); |
| 879 | seq_printf(s, "\n"); |
| 880 | } |
| 881 | spin_unlock_irqrestore(&sync_timeline_list_lock, flags); |
| 882 | |
| 883 | seq_printf(s, "fences:\n--------------\n"); |
| 884 | |
| 885 | spin_lock_irqsave(&sync_fence_list_lock, flags); |
| 886 | list_for_each(pos, &sync_fence_list_head) { |
| 887 | struct sync_fence *fence = |
| 888 | container_of(pos, struct sync_fence, sync_fence_list); |
| 889 | |
| 890 | sync_print_fence(s, fence); |
| 891 | seq_printf(s, "\n"); |
| 892 | } |
| 893 | spin_unlock_irqrestore(&sync_fence_list_lock, flags); |
| 894 | return 0; |
| 895 | } |
| 896 | |
| 897 | static int sync_debugfs_open(struct inode *inode, struct file *file) |
| 898 | { |
| 899 | return single_open(file, sync_debugfs_show, inode->i_private); |
| 900 | } |
| 901 | |
| 902 | static const struct file_operations sync_debugfs_fops = { |
| 903 | .open = sync_debugfs_open, |
| 904 | .read = seq_read, |
| 905 | .llseek = seq_lseek, |
| 906 | .release = single_release, |
| 907 | }; |
| 908 | |
| 909 | static __init int sync_debugfs_init(void) |
| 910 | { |
| 911 | debugfs_create_file("sync", S_IRUGO, NULL, NULL, &sync_debugfs_fops); |
| 912 | return 0; |
| 913 | } |
Erik Gilling | 981c8a9 | 2012-03-14 19:49:15 -0700 | [diff] [blame] | 914 | late_initcall(sync_debugfs_init); |
| 915 | |
Ajay Dudani | 442fff4 | 2012-08-24 13:48:57 -0700 | [diff] [blame^] | 916 | #define DUMP_CHUNK 256 |
| 917 | static char sync_dump_buf[64 * 1024]; |
| 918 | void sync_dump(void) |
| 919 | { |
| 920 | struct seq_file s = { |
| 921 | .buf = sync_dump_buf, |
| 922 | .size = sizeof(sync_dump_buf) - 1, |
| 923 | }; |
| 924 | int i; |
| 925 | |
| 926 | sync_debugfs_show(&s, NULL); |
| 927 | |
| 928 | for (i = 0; i < s.count; i += DUMP_CHUNK) { |
| 929 | if ((s.count - i) > DUMP_CHUNK) { |
| 930 | char c = s.buf[i + DUMP_CHUNK]; |
| 931 | s.buf[i + DUMP_CHUNK] = 0; |
| 932 | pr_cont("%s", s.buf + i); |
| 933 | s.buf[i + DUMP_CHUNK] = c; |
| 934 | } else { |
| 935 | s.buf[s.count] = 0; |
| 936 | pr_cont("%s", s.buf + i); |
| 937 | } |
| 938 | } |
| 939 | } |
| 940 | #else |
| 941 | static void sync_dump(void) |
| 942 | { |
| 943 | } |
Erik Gilling | 981c8a9 | 2012-03-14 19:49:15 -0700 | [diff] [blame] | 944 | #endif |