sgi-gru: add support for a user to explicitly unload a GRU context
[safe/jmp/linux-2.6] / drivers / misc / sgi-gru / grufault.c
1 /*
2  * SN Platform GRU Driver
3  *
4  *              FAULT HANDLER FOR GRU DETECTED TLB MISSES
5  *
6  * This file contains code that handles TLB misses within the GRU.
7  * These misses are reported either via interrupts or user polling of
8  * the user CB.
9  *
10  *  Copyright (c) 2008 Silicon Graphics, Inc.  All Rights Reserved.
11  *
12  *  This program is free software; you can redistribute it and/or modify
13  *  it under the terms of the GNU General Public License as published by
14  *  the Free Software Foundation; either version 2 of the License, or
15  *  (at your option) any later version.
16  *
17  *  This program is distributed in the hope that it will be useful,
18  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
19  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
20  *  GNU General Public License for more details.
21  *
22  *  You should have received a copy of the GNU General Public License
23  *  along with this program; if not, write to the Free Software
24  *  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
25  */
26
27 #include <linux/kernel.h>
28 #include <linux/errno.h>
29 #include <linux/spinlock.h>
30 #include <linux/mm.h>
31 #include <linux/hugetlb.h>
32 #include <linux/device.h>
33 #include <linux/io.h>
34 #include <linux/uaccess.h>
35 #include <linux/security.h>
36 #include <asm/pgtable.h>
37 #include "gru.h"
38 #include "grutables.h"
39 #include "grulib.h"
40 #include "gru_instructions.h"
41 #include <asm/uv/uv_hub.h>
42
43 /*
44  * Test if a physical address is a valid GRU GSEG address
45  */
46 static inline int is_gru_paddr(unsigned long paddr)
47 {
48         return paddr >= gru_start_paddr && paddr < gru_end_paddr;
49 }
50
51 /*
52  * Find the vma of a GRU segment. Caller must hold mmap_sem.
53  */
54 struct vm_area_struct *gru_find_vma(unsigned long vaddr)
55 {
56         struct vm_area_struct *vma;
57
58         vma = find_vma(current->mm, vaddr);
59         if (vma && vma->vm_start <= vaddr && vma->vm_ops == &gru_vm_ops)
60                 return vma;
61         return NULL;
62 }
63
64 /*
65  * Find and lock the gts that contains the specified user vaddr.
66  *
67  * Returns:
68  *      - *gts with the mmap_sem locked for read and the GTS locked.
69  *      - NULL if vaddr invalid OR is not a valid GSEG vaddr.
70  */
71
72 static struct gru_thread_state *gru_find_lock_gts(unsigned long vaddr)
73 {
74         struct mm_struct *mm = current->mm;
75         struct vm_area_struct *vma;
76         struct gru_thread_state *gts = NULL;
77
78         down_read(&mm->mmap_sem);
79         vma = gru_find_vma(vaddr);
80         if (vma)
81                 gts = gru_find_thread_state(vma, TSID(vaddr, vma));
82         if (gts)
83                 mutex_lock(&gts->ts_ctxlock);
84         else
85                 up_read(&mm->mmap_sem);
86         return gts;
87 }
88
89 static struct gru_thread_state *gru_alloc_locked_gts(unsigned long vaddr)
90 {
91         struct mm_struct *mm = current->mm;
92         struct vm_area_struct *vma;
93         struct gru_thread_state *gts = NULL;
94
95         down_write(&mm->mmap_sem);
96         vma = gru_find_vma(vaddr);
97         if (vma)
98                 gts = gru_alloc_thread_state(vma, TSID(vaddr, vma));
99         if (gts) {
100                 mutex_lock(&gts->ts_ctxlock);
101                 downgrade_write(&mm->mmap_sem);
102         } else {
103                 up_write(&mm->mmap_sem);
104         }
105
106         return gts;
107 }
108
109 /*
110  * Unlock a GTS that was previously locked with gru_find_lock_gts().
111  */
112 static void gru_unlock_gts(struct gru_thread_state *gts)
113 {
114         mutex_unlock(&gts->ts_ctxlock);
115         up_read(&current->mm->mmap_sem);
116 }
117
118 /*
119  * Set a CB.istatus to active using a user virtual address. This must be done
120  * just prior to a TFH RESTART. The new cb.istatus is an in-cache status ONLY.
121  * If the line is evicted, the status may be lost. The in-cache update
122  * is necessary to prevent the user from seeing a stale cb.istatus that will
123  * change as soon as the TFH restart is complete. Races may cause an
124  * occasional failure to clear the cb.istatus, but that is ok.
125  *
126  * If the cb address is not valid (should not happen, but...), nothing
127  * bad will happen.. The get_user()/put_user() will fail but there
128  * are no bad side-effects.
129  */
130 static void gru_cb_set_istatus_active(unsigned long __user *cb)
131 {
132         union {
133                 struct gru_instruction_bits bits;
134                 unsigned long dw;
135         } u;
136
137         if (cb) {
138                 get_user(u.dw, cb);
139                 u.bits.istatus = CBS_ACTIVE;
140                 put_user(u.dw, cb);
141         }
142 }
143
144 /*
145  * Convert a interrupt IRQ to a pointer to the GRU GTS that caused the
146  * interrupt. Interrupts are always sent to a cpu on the blade that contains the
147  * GRU (except for headless blades which are not currently supported). A blade
148  * has N grus; a block of N consecutive IRQs is assigned to the GRUs. The IRQ
149  * number uniquely identifies the GRU chiplet on the local blade that caused the
150  * interrupt. Always called in interrupt context.
151  */
152 static inline struct gru_state *irq_to_gru(int irq)
153 {
154         return &gru_base[uv_numa_blade_id()]->bs_grus[irq - IRQ_GRU];
155 }
156
157 /*
158  * Read & clear a TFM
159  *
160  * The GRU has an array of fault maps. A map is private to a cpu
161  * Only one cpu will be accessing a cpu's fault map.
162  *
163  * This function scans the cpu-private fault map & clears all bits that
164  * are set. The function returns a bitmap that indicates the bits that
165  * were cleared. Note that sense the maps may be updated asynchronously by
166  * the GRU, atomic operations must be used to clear bits.
167  */
168 static void get_clear_fault_map(struct gru_state *gru,
169                                 struct gru_tlb_fault_map *map)
170 {
171         unsigned long i, k;
172         struct gru_tlb_fault_map *tfm;
173
174         tfm = get_tfm_for_cpu(gru, gru_cpu_fault_map_id());
175         prefetchw(tfm);         /* Helps on hardware, required for emulator */
176         for (i = 0; i < BITS_TO_LONGS(GRU_NUM_CBE); i++) {
177                 k = tfm->fault_bits[i];
178                 if (k)
179                         k = xchg(&tfm->fault_bits[i], 0UL);
180                 map->fault_bits[i] = k;
181         }
182
183         /*
184          * Not functionally required but helps performance. (Required
185          * on emulator)
186          */
187         gru_flush_cache(tfm);
188 }
189
190 /*
191  * Atomic (interrupt context) & non-atomic (user context) functions to
192  * convert a vaddr into a physical address. The size of the page
193  * is returned in pageshift.
194  *      returns:
195  *                0 - successful
196  *              < 0 - error code
197  *                1 - (atomic only) try again in non-atomic context
198  */
199 static int non_atomic_pte_lookup(struct vm_area_struct *vma,
200                                  unsigned long vaddr, int write,
201                                  unsigned long *paddr, int *pageshift)
202 {
203         struct page *page;
204
205         /* ZZZ Need to handle HUGE pages */
206         if (is_vm_hugetlb_page(vma))
207                 return -EFAULT;
208         *pageshift = PAGE_SHIFT;
209         if (get_user_pages
210             (current, current->mm, vaddr, 1, write, 0, &page, NULL) <= 0)
211                 return -EFAULT;
212         *paddr = page_to_phys(page);
213         put_page(page);
214         return 0;
215 }
216
217 /*
218  * atomic_pte_lookup
219  *
220  * Convert a user virtual address to a physical address
221  * Only supports Intel large pages (2MB only) on x86_64.
222  *      ZZZ - hugepage support is incomplete
223  *
224  * NOTE: mmap_sem is already held on entry to this function. This
225  * guarantees existence of the page tables.
226  */
227 static int atomic_pte_lookup(struct vm_area_struct *vma, unsigned long vaddr,
228         int write, unsigned long *paddr, int *pageshift)
229 {
230         pgd_t *pgdp;
231         pmd_t *pmdp;
232         pud_t *pudp;
233         pte_t pte;
234
235         pgdp = pgd_offset(vma->vm_mm, vaddr);
236         if (unlikely(pgd_none(*pgdp)))
237                 goto err;
238
239         pudp = pud_offset(pgdp, vaddr);
240         if (unlikely(pud_none(*pudp)))
241                 goto err;
242
243         pmdp = pmd_offset(pudp, vaddr);
244         if (unlikely(pmd_none(*pmdp)))
245                 goto err;
246 #ifdef CONFIG_X86_64
247         if (unlikely(pmd_large(*pmdp)))
248                 pte = *(pte_t *) pmdp;
249         else
250 #endif
251                 pte = *pte_offset_kernel(pmdp, vaddr);
252
253         if (unlikely(!pte_present(pte) ||
254                      (write && (!pte_write(pte) || !pte_dirty(pte)))))
255                 return 1;
256
257         *paddr = pte_pfn(pte) << PAGE_SHIFT;
258 #ifdef CONFIG_HUGETLB_PAGE
259         *pageshift = is_vm_hugetlb_page(vma) ? HPAGE_SHIFT : PAGE_SHIFT;
260 #else
261         *pageshift = PAGE_SHIFT;
262 #endif
263         return 0;
264
265 err:
266         local_irq_enable();
267         return 1;
268 }
269
270 /*
271  * Drop a TLB entry into the GRU. The fault is described by info in an TFH.
272  *      Input:
273  *              cb    Address of user CBR. Null if not running in user context
274  *      Return:
275  *                0 = dropin, exception, or switch to UPM successful
276  *                1 = range invalidate active
277  *              < 0 = error code
278  *
279  */
280 static int gru_try_dropin(struct gru_thread_state *gts,
281                           struct gru_tlb_fault_handle *tfh,
282                           unsigned long __user *cb)
283 {
284         struct mm_struct *mm = gts->ts_mm;
285         struct vm_area_struct *vma;
286         int pageshift, asid, write, ret;
287         unsigned long paddr, gpa, vaddr;
288
289         /*
290          * NOTE: The GRU contains magic hardware that eliminates races between
291          * TLB invalidates and TLB dropins. If an invalidate occurs
292          * in the window between reading the TFH and the subsequent TLB dropin,
293          * the dropin is ignored. This eliminates the need for additional locks.
294          */
295
296         /*
297          * Error if TFH state is IDLE or FMM mode & the user issuing a UPM call.
298          * Might be a hardware race OR a stupid user. Ignore FMM because FMM
299          * is a transient state.
300          */
301         if (tfh->state == TFHSTATE_IDLE)
302                 goto failidle;
303         if (tfh->state == TFHSTATE_MISS_FMM && cb)
304                 goto failfmm;
305
306         write = (tfh->cause & TFHCAUSE_TLB_MOD) != 0;
307         vaddr = tfh->missvaddr;
308         asid = tfh->missasid;
309         if (asid == 0)
310                 goto failnoasid;
311
312         rmb();  /* TFH must be cache resident before reading ms_range_active */
313
314         /*
315          * TFH is cache resident - at least briefly. Fail the dropin
316          * if a range invalidate is active.
317          */
318         if (atomic_read(&gts->ts_gms->ms_range_active))
319                 goto failactive;
320
321         vma = find_vma(mm, vaddr);
322         if (!vma)
323                 goto failinval;
324
325         /*
326          * Atomic lookup is faster & usually works even if called in non-atomic
327          * context.
328          */
329         rmb();  /* Must/check ms_range_active before loading PTEs */
330         ret = atomic_pte_lookup(vma, vaddr, write, &paddr, &pageshift);
331         if (ret) {
332                 if (!cb)
333                         goto failupm;
334                 if (non_atomic_pte_lookup(vma, vaddr, write, &paddr,
335                                           &pageshift))
336                         goto failinval;
337         }
338         if (is_gru_paddr(paddr))
339                 goto failinval;
340
341         paddr = paddr & ~((1UL << pageshift) - 1);
342         gpa = uv_soc_phys_ram_to_gpa(paddr);
343         gru_cb_set_istatus_active(cb);
344         tfh_write_restart(tfh, gpa, GAA_RAM, vaddr, asid, write,
345                           GRU_PAGESIZE(pageshift));
346         STAT(tlb_dropin);
347         gru_dbg(grudev,
348                 "%s: tfh 0x%p, vaddr 0x%lx, asid 0x%x, ps %d, gpa 0x%lx\n",
349                 ret ? "non-atomic" : "atomic", tfh, vaddr, asid,
350                 pageshift, gpa);
351         return 0;
352
353 failnoasid:
354         /* No asid (delayed unload). */
355         STAT(tlb_dropin_fail_no_asid);
356         gru_dbg(grudev, "FAILED no_asid tfh: 0x%p, vaddr 0x%lx\n", tfh, vaddr);
357         if (!cb)
358                 tfh_user_polling_mode(tfh);
359         else
360                 gru_flush_cache(tfh);
361         return -EAGAIN;
362
363 failupm:
364         /* Atomic failure switch CBR to UPM */
365         tfh_user_polling_mode(tfh);
366         STAT(tlb_dropin_fail_upm);
367         gru_dbg(grudev, "FAILED upm tfh: 0x%p, vaddr 0x%lx\n", tfh, vaddr);
368         return 1;
369
370 failfmm:
371         /* FMM state on UPM call */
372         gru_flush_cache(tfh);
373         STAT(tlb_dropin_fail_fmm);
374         gru_dbg(grudev, "FAILED fmm tfh: 0x%p, state %d\n", tfh, tfh->state);
375         return 0;
376
377 failidle:
378         /* TFH was idle  - no miss pending */
379         gru_flush_cache(tfh);
380         if (cb)
381                 gru_flush_cache(cb);
382         STAT(tlb_dropin_fail_idle);
383         gru_dbg(grudev, "FAILED idle tfh: 0x%p, state %d\n", tfh, tfh->state);
384         return 0;
385
386 failinval:
387         /* All errors (atomic & non-atomic) switch CBR to EXCEPTION state */
388         tfh_exception(tfh);
389         STAT(tlb_dropin_fail_invalid);
390         gru_dbg(grudev, "FAILED inval tfh: 0x%p, vaddr 0x%lx\n", tfh, vaddr);
391         return -EFAULT;
392
393 failactive:
394         /* Range invalidate active. Switch to UPM iff atomic */
395         if (!cb)
396                 tfh_user_polling_mode(tfh);
397         else
398                 gru_flush_cache(tfh);
399         STAT(tlb_dropin_fail_range_active);
400         gru_dbg(grudev, "FAILED range active: tfh 0x%p, vaddr 0x%lx\n",
401                 tfh, vaddr);
402         return 1;
403 }
404
405 /*
406  * Process an external interrupt from the GRU. This interrupt is
407  * caused by a TLB miss.
408  * Note that this is the interrupt handler that is registered with linux
409  * interrupt handlers.
410  */
411 irqreturn_t gru_intr(int irq, void *dev_id)
412 {
413         struct gru_state *gru;
414         struct gru_tlb_fault_map map;
415         struct gru_thread_state *gts;
416         struct gru_tlb_fault_handle *tfh = NULL;
417         int cbrnum, ctxnum;
418
419         STAT(intr);
420
421         gru = irq_to_gru(irq);
422         if (!gru) {
423                 dev_err(grudev, "GRU: invalid interrupt: cpu %d, irq %d\n",
424                         raw_smp_processor_id(), irq);
425                 return IRQ_NONE;
426         }
427         get_clear_fault_map(gru, &map);
428         gru_dbg(grudev, "irq %d, gru %x, map 0x%lx\n", irq, gru->gs_gid,
429                 map.fault_bits[0]);
430
431         for_each_cbr_in_tfm(cbrnum, map.fault_bits) {
432                 tfh = get_tfh_by_index(gru, cbrnum);
433                 prefetchw(tfh); /* Helps on hdw, required for emulator */
434
435                 /*
436                  * When hardware sets a bit in the faultmap, it implicitly
437                  * locks the GRU context so that it cannot be unloaded.
438                  * The gts cannot change until a TFH start/writestart command
439                  * is issued.
440                  */
441                 ctxnum = tfh->ctxnum;
442                 gts = gru->gs_gts[ctxnum];
443
444                 /*
445                  * This is running in interrupt context. Trylock the mmap_sem.
446                  * If it fails, retry the fault in user context.
447                  */
448                 if (down_read_trylock(&gts->ts_mm->mmap_sem)) {
449                         gru_try_dropin(gts, tfh, NULL);
450                         up_read(&gts->ts_mm->mmap_sem);
451                 } else {
452                         tfh_user_polling_mode(tfh);
453                         STAT(intr_mm_lock_failed);
454                 }
455         }
456         return IRQ_HANDLED;
457 }
458
459
460 static int gru_user_dropin(struct gru_thread_state *gts,
461                            struct gru_tlb_fault_handle *tfh,
462                            unsigned long __user *cb)
463 {
464         struct gru_mm_struct *gms = gts->ts_gms;
465         int ret;
466
467         while (1) {
468                 wait_event(gms->ms_wait_queue,
469                            atomic_read(&gms->ms_range_active) == 0);
470                 prefetchw(tfh); /* Helps on hdw, required for emulator */
471                 ret = gru_try_dropin(gts, tfh, cb);
472                 if (ret <= 0)
473                         return ret;
474                 STAT(call_os_wait_queue);
475         }
476 }
477
478 /*
479  * This interface is called as a result of a user detecting a "call OS" bit
480  * in a user CB. Normally means that a TLB fault has occurred.
481  *      cb - user virtual address of the CB
482  */
483 int gru_handle_user_call_os(unsigned long cb)
484 {
485         struct gru_tlb_fault_handle *tfh;
486         struct gru_thread_state *gts;
487         unsigned long __user *cbp;
488         int ucbnum, cbrnum, ret = -EINVAL;
489
490         STAT(call_os);
491         gru_dbg(grudev, "address 0x%lx\n", cb);
492
493         /* sanity check the cb pointer */
494         ucbnum = get_cb_number((void *)cb);
495         if ((cb & (GRU_HANDLE_STRIDE - 1)) || ucbnum >= GRU_NUM_CB)
496                 return -EINVAL;
497         cbp = (unsigned long *)cb;
498
499         gts = gru_find_lock_gts(cb);
500         if (!gts)
501                 return -EINVAL;
502
503         if (ucbnum >= gts->ts_cbr_au_count * GRU_CBR_AU_SIZE)
504                 goto exit;
505
506         /*
507          * If force_unload is set, the UPM TLB fault is phony. The task
508          * has migrated to another node and the GSEG must be moved. Just
509          * unload the context. The task will page fault and assign a new
510          * context.
511          */
512         if (gts->ts_tgid_owner == current->tgid && gts->ts_blade >= 0 &&
513                                 gts->ts_blade != uv_numa_blade_id()) {
514                 STAT(call_os_offnode_reference);
515                 gts->ts_force_unload = 1;
516         }
517
518         ret = -EAGAIN;
519         cbrnum = thread_cbr_number(gts, ucbnum);
520         if (gts->ts_force_unload) {
521                 gru_unload_context(gts, 1);
522         } else if (gts->ts_gru) {
523                 tfh = get_tfh_by_index(gts->ts_gru, cbrnum);
524                 ret = gru_user_dropin(gts, tfh, cbp);
525         }
526 exit:
527         gru_unlock_gts(gts);
528         return ret;
529 }
530
531 /*
532  * Fetch the exception detail information for a CB that terminated with
533  * an exception.
534  */
535 int gru_get_exception_detail(unsigned long arg)
536 {
537         struct control_block_extended_exc_detail excdet;
538         struct gru_control_block_extended *cbe;
539         struct gru_thread_state *gts;
540         int ucbnum, cbrnum, ret;
541
542         STAT(user_exception);
543         if (copy_from_user(&excdet, (void __user *)arg, sizeof(excdet)))
544                 return -EFAULT;
545
546         gru_dbg(grudev, "address 0x%lx\n", excdet.cb);
547         gts = gru_find_lock_gts(excdet.cb);
548         if (!gts)
549                 return -EINVAL;
550
551         ucbnum = get_cb_number((void *)excdet.cb);
552         if (ucbnum >= gts->ts_cbr_au_count * GRU_CBR_AU_SIZE) {
553                 ret = -EINVAL;
554         } else if (gts->ts_gru) {
555                 cbrnum = thread_cbr_number(gts, ucbnum);
556                 cbe = get_cbe_by_index(gts->ts_gru, cbrnum);
557                 prefetchw(cbe);/* Harmless on hardware, required for emulator */
558                 excdet.opc = cbe->opccpy;
559                 excdet.exopc = cbe->exopccpy;
560                 excdet.ecause = cbe->ecause;
561                 excdet.exceptdet0 = cbe->idef1upd;
562                 excdet.exceptdet1 = cbe->idef3upd;
563                 ret = 0;
564         } else {
565                 ret = -EAGAIN;
566         }
567         gru_unlock_gts(gts);
568
569         gru_dbg(grudev, "address 0x%lx, ecause 0x%x\n", excdet.cb,
570                 excdet.ecause);
571         if (!ret && copy_to_user((void __user *)arg, &excdet, sizeof(excdet)))
572                 ret = -EFAULT;
573         return ret;
574 }
575
576 /*
577  * User request to unload a context. Content is saved for possible reload.
578  */
579 static int gru_unload_all_contexts(void)
580 {
581         struct gru_thread_state *gts;
582         struct gru_state *gru;
583         int maxgid, gid, ctxnum;
584         int nodesperblade;
585
586         if (!capable(CAP_SYS_ADMIN))
587                 return -EPERM;
588         if (num_online_nodes() > 1 &&
589                         (uv_node_to_blade_id(1) == uv_node_to_blade_id(0)))
590                 nodesperblade = 2;
591         else
592                 nodesperblade = 1;
593         maxgid = GRU_CHIPLETS_PER_BLADE * num_online_nodes() / nodesperblade;
594         for (gid = 0; gid < maxgid; gid++) {
595                 gru = GID_TO_GRU(gid);
596                 spin_lock(&gru->gs_lock);
597                 for (ctxnum = 0; ctxnum < GRU_NUM_CCH; ctxnum++) {
598                         gts = gru->gs_gts[ctxnum];
599                         if (gts && mutex_trylock(&gts->ts_ctxlock)) {
600                                 spin_unlock(&gru->gs_lock);
601                                 gru_unload_context(gts, 1);
602                                 gru_unlock_gts(gts);
603                                 spin_lock(&gru->gs_lock);
604                         }
605                 }
606                 spin_unlock(&gru->gs_lock);
607         }
608         return 0;
609 }
610
611 int gru_user_unload_context(unsigned long arg)
612 {
613         struct gru_thread_state *gts;
614         struct gru_unload_context_req req;
615
616         STAT(user_unload_context);
617         if (copy_from_user(&req, (void __user *)arg, sizeof(req)))
618                 return -EFAULT;
619
620         gru_dbg(grudev, "gseg 0x%lx\n", req.gseg);
621
622         if (!req.gseg)
623                 return gru_unload_all_contexts();
624
625         gts = gru_find_lock_gts(req.gseg);
626         if (!gts)
627                 return -EINVAL;
628
629         if (gts->ts_gru)
630                 gru_unload_context(gts, 1);
631         gru_unlock_gts(gts);
632
633         return 0;
634 }
635
636 /*
637  * User request to flush a range of virtual addresses from the GRU TLB
638  * (Mainly for testing).
639  */
640 int gru_user_flush_tlb(unsigned long arg)
641 {
642         struct gru_thread_state *gts;
643         struct gru_flush_tlb_req req;
644
645         STAT(user_flush_tlb);
646         if (copy_from_user(&req, (void __user *)arg, sizeof(req)))
647                 return -EFAULT;
648
649         gru_dbg(grudev, "gseg 0x%lx, vaddr 0x%lx, len 0x%lx\n", req.gseg,
650                 req.vaddr, req.len);
651
652         gts = gru_find_lock_gts(req.gseg);
653         if (!gts)
654                 return -EINVAL;
655
656         gru_flush_tlb_range(gts->ts_gms, req.vaddr, req.len);
657         gru_unlock_gts(gts);
658
659         return 0;
660 }
661
662 /*
663  * Register the current task as the user of the GSEG slice.
664  * Needed for TLB fault interrupt targeting.
665  */
666 int gru_set_task_slice(long address)
667 {
668         struct gru_thread_state *gts;
669
670         STAT(set_task_slice);
671         gru_dbg(grudev, "address 0x%lx\n", address);
672         gts = gru_alloc_locked_gts(address);
673         if (!gts)
674                 return -EINVAL;
675
676         gts->ts_tgid_owner = current->tgid;
677         gru_unlock_gts(gts);
678
679         return 0;
680 }