Paolo 'Blaisorblade' Giarrusso | aa6758d | 2006-03-31 02:30:22 -0800 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (C) 2005 Paolo 'Blaisorblade' Giarrusso <blaisorblade@yahoo.it> |
| 3 | * Licensed under the GPL |
| 4 | */ |
| 5 | |
Jeff Dike | ba180fd | 2007-10-16 01:27:00 -0700 | [diff] [blame] | 6 | #include "linux/percpu.h" |
Paolo 'Blaisorblade' Giarrusso | aa6758d | 2006-03-31 02:30:22 -0800 | [diff] [blame] | 7 | #include "linux/sched.h" |
Paolo 'Blaisorblade' Giarrusso | aa6758d | 2006-03-31 02:30:22 -0800 | [diff] [blame] | 8 | #include "asm/uaccess.h" |
Paolo 'Blaisorblade' Giarrusso | aa6758d | 2006-03-31 02:30:22 -0800 | [diff] [blame] | 9 | #include "os.h" |
Paolo 'Blaisorblade' Giarrusso | aa6758d | 2006-03-31 02:30:22 -0800 | [diff] [blame] | 10 | #include "skas.h" |
Jeff Dike | ba180fd | 2007-10-16 01:27:00 -0700 | [diff] [blame] | 11 | #include "sysdep/tls.h" |
Paolo 'Blaisorblade' Giarrusso | aa6758d | 2006-03-31 02:30:22 -0800 | [diff] [blame] | 12 | |
Jeff Dike | 65a58ab | 2007-05-06 14:51:20 -0700 | [diff] [blame] | 13 | /* |
| 14 | * If needed we can detect when it's uninitialized. |
| 15 | * |
| 16 | * These are initialized in an initcall and unchanged thereafter. |
| 17 | */ |
Paolo 'Blaisorblade' Giarrusso | 3feb885 | 2006-03-31 02:30:25 -0800 | [diff] [blame] | 18 | static int host_supports_tls = -1; |
Jeff Dike | 65a58ab | 2007-05-06 14:51:20 -0700 | [diff] [blame] | 19 | int host_gdt_entry_tls_min; |
Paolo 'Blaisorblade' Giarrusso | 3feb885 | 2006-03-31 02:30:25 -0800 | [diff] [blame] | 20 | |
Jeff Dike | 6aa802c | 2007-10-16 01:26:56 -0700 | [diff] [blame] | 21 | int do_set_thread_area(struct user_desc *info) |
Paolo 'Blaisorblade' Giarrusso | aa6758d | 2006-03-31 02:30:22 -0800 | [diff] [blame] | 22 | { |
| 23 | int ret; |
| 24 | u32 cpu; |
| 25 | |
| 26 | cpu = get_cpu(); |
| 27 | ret = os_set_thread_area(info, userspace_pid[cpu]); |
| 28 | put_cpu(); |
| 29 | return ret; |
| 30 | } |
| 31 | |
Jeff Dike | 6aa802c | 2007-10-16 01:26:56 -0700 | [diff] [blame] | 32 | int do_get_thread_area(struct user_desc *info) |
Paolo 'Blaisorblade' Giarrusso | aa6758d | 2006-03-31 02:30:22 -0800 | [diff] [blame] | 33 | { |
| 34 | int ret; |
| 35 | u32 cpu; |
| 36 | |
| 37 | cpu = get_cpu(); |
| 38 | ret = os_get_thread_area(info, userspace_pid[cpu]); |
| 39 | put_cpu(); |
| 40 | return ret; |
| 41 | } |
Paolo 'Blaisorblade' Giarrusso | aa6758d | 2006-03-31 02:30:22 -0800 | [diff] [blame] | 42 | |
| 43 | /* |
| 44 | * sys_get_thread_area: get a yet unused TLS descriptor index. |
| 45 | * XXX: Consider leaving one free slot for glibc usage at first place. This must |
| 46 | * be done here (and by changing GDT_ENTRY_TLS_* macros) and nowhere else. |
| 47 | * |
Simon Arlott | b60745b | 2007-10-20 01:23:03 +0200 | [diff] [blame] | 48 | * Also, this must be tested when compiling in SKAS mode with dynamic linking |
Paolo 'Blaisorblade' Giarrusso | aa6758d | 2006-03-31 02:30:22 -0800 | [diff] [blame] | 49 | * and running against NPTL. |
| 50 | */ |
| 51 | static int get_free_idx(struct task_struct* task) |
| 52 | { |
| 53 | struct thread_struct *t = &task->thread; |
| 54 | int idx; |
| 55 | |
| 56 | if (!t->arch.tls_array) |
| 57 | return GDT_ENTRY_TLS_MIN; |
| 58 | |
| 59 | for (idx = 0; idx < GDT_ENTRY_TLS_ENTRIES; idx++) |
| 60 | if (!t->arch.tls_array[idx].present) |
| 61 | return idx + GDT_ENTRY_TLS_MIN; |
| 62 | return -ESRCH; |
| 63 | } |
| 64 | |
Paolo 'Blaisorblade' Giarrusso | aa6758d | 2006-03-31 02:30:22 -0800 | [diff] [blame] | 65 | static inline void clear_user_desc(struct user_desc* info) |
| 66 | { |
| 67 | /* Postcondition: LDT_empty(info) returns true. */ |
| 68 | memset(info, 0, sizeof(*info)); |
| 69 | |
Jeff Dike | ba180fd | 2007-10-16 01:27:00 -0700 | [diff] [blame] | 70 | /* |
| 71 | * Check the LDT_empty or the i386 sys_get_thread_area code - we obtain |
Paolo 'Blaisorblade' Giarrusso | aa6758d | 2006-03-31 02:30:22 -0800 | [diff] [blame] | 72 | * indeed an empty user_desc. |
| 73 | */ |
| 74 | info->read_exec_only = 1; |
| 75 | info->seg_not_present = 1; |
| 76 | } |
| 77 | |
Paolo 'Blaisorblade' Giarrusso | 54d8d3b | 2006-03-31 02:30:24 -0800 | [diff] [blame] | 78 | #define O_FORCE 1 |
| 79 | |
Paolo 'Blaisorblade' Giarrusso | aa6758d | 2006-03-31 02:30:22 -0800 | [diff] [blame] | 80 | static int load_TLS(int flags, struct task_struct *to) |
| 81 | { |
| 82 | int ret = 0; |
| 83 | int idx; |
| 84 | |
| 85 | for (idx = GDT_ENTRY_TLS_MIN; idx < GDT_ENTRY_TLS_MAX; idx++) { |
Jeff Dike | ba180fd | 2007-10-16 01:27:00 -0700 | [diff] [blame] | 86 | struct uml_tls_struct* curr = |
| 87 | &to->thread.arch.tls_array[idx - GDT_ENTRY_TLS_MIN]; |
Paolo 'Blaisorblade' Giarrusso | aa6758d | 2006-03-31 02:30:22 -0800 | [diff] [blame] | 88 | |
Jeff Dike | ba180fd | 2007-10-16 01:27:00 -0700 | [diff] [blame] | 89 | /* |
| 90 | * Actually, now if it wasn't flushed it gets cleared and |
| 91 | * flushed to the host, which will clear it. |
| 92 | */ |
Paolo 'Blaisorblade' Giarrusso | aa6758d | 2006-03-31 02:30:22 -0800 | [diff] [blame] | 93 | if (!curr->present) { |
| 94 | if (!curr->flushed) { |
| 95 | clear_user_desc(&curr->tls); |
| 96 | curr->tls.entry_number = idx; |
| 97 | } else { |
| 98 | WARN_ON(!LDT_empty(&curr->tls)); |
| 99 | continue; |
| 100 | } |
| 101 | } |
| 102 | |
| 103 | if (!(flags & O_FORCE) && curr->flushed) |
| 104 | continue; |
| 105 | |
| 106 | ret = do_set_thread_area(&curr->tls); |
| 107 | if (ret) |
| 108 | goto out; |
| 109 | |
| 110 | curr->flushed = 1; |
| 111 | } |
| 112 | out: |
| 113 | return ret; |
| 114 | } |
| 115 | |
Jeff Dike | ba180fd | 2007-10-16 01:27:00 -0700 | [diff] [blame] | 116 | /* |
| 117 | * Verify if we need to do a flush for the new process, i.e. if there are any |
Paolo 'Blaisorblade' Giarrusso | aa6758d | 2006-03-31 02:30:22 -0800 | [diff] [blame] | 118 | * present desc's, only if they haven't been flushed. |
| 119 | */ |
| 120 | static inline int needs_TLS_update(struct task_struct *task) |
| 121 | { |
| 122 | int i; |
| 123 | int ret = 0; |
| 124 | |
| 125 | for (i = GDT_ENTRY_TLS_MIN; i < GDT_ENTRY_TLS_MAX; i++) { |
Jeff Dike | ba180fd | 2007-10-16 01:27:00 -0700 | [diff] [blame] | 126 | struct uml_tls_struct* curr = |
| 127 | &task->thread.arch.tls_array[i - GDT_ENTRY_TLS_MIN]; |
Paolo 'Blaisorblade' Giarrusso | aa6758d | 2006-03-31 02:30:22 -0800 | [diff] [blame] | 128 | |
Jeff Dike | ba180fd | 2007-10-16 01:27:00 -0700 | [diff] [blame] | 129 | /* |
| 130 | * Can't test curr->present, we may need to clear a descriptor |
| 131 | * which had a value. |
| 132 | */ |
Paolo 'Blaisorblade' Giarrusso | aa6758d | 2006-03-31 02:30:22 -0800 | [diff] [blame] | 133 | if (curr->flushed) |
| 134 | continue; |
| 135 | ret = 1; |
| 136 | break; |
| 137 | } |
| 138 | return ret; |
| 139 | } |
| 140 | |
Jeff Dike | ba180fd | 2007-10-16 01:27:00 -0700 | [diff] [blame] | 141 | /* |
| 142 | * On a newly forked process, the TLS descriptors haven't yet been flushed. So |
Paolo 'Blaisorblade' Giarrusso | aa6758d | 2006-03-31 02:30:22 -0800 | [diff] [blame] | 143 | * we mark them as such and the first switch_to will do the job. |
| 144 | */ |
| 145 | void clear_flushed_tls(struct task_struct *task) |
| 146 | { |
| 147 | int i; |
| 148 | |
| 149 | for (i = GDT_ENTRY_TLS_MIN; i < GDT_ENTRY_TLS_MAX; i++) { |
Jeff Dike | ba180fd | 2007-10-16 01:27:00 -0700 | [diff] [blame] | 150 | struct uml_tls_struct* curr = |
| 151 | &task->thread.arch.tls_array[i - GDT_ENTRY_TLS_MIN]; |
Paolo 'Blaisorblade' Giarrusso | aa6758d | 2006-03-31 02:30:22 -0800 | [diff] [blame] | 152 | |
Jeff Dike | ba180fd | 2007-10-16 01:27:00 -0700 | [diff] [blame] | 153 | /* |
| 154 | * Still correct to do this, if it wasn't present on the host it |
| 155 | * will remain as flushed as it was. |
| 156 | */ |
Paolo 'Blaisorblade' Giarrusso | aa6758d | 2006-03-31 02:30:22 -0800 | [diff] [blame] | 157 | if (!curr->present) |
| 158 | continue; |
| 159 | |
| 160 | curr->flushed = 0; |
| 161 | } |
| 162 | } |
| 163 | |
Jeff Dike | ba180fd | 2007-10-16 01:27:00 -0700 | [diff] [blame] | 164 | /* |
| 165 | * In SKAS0 mode, currently, multiple guest threads sharing the same ->mm have a |
Paolo 'Blaisorblade' Giarrusso | 3feb885 | 2006-03-31 02:30:25 -0800 | [diff] [blame] | 166 | * common host process. So this is needed in SKAS0 too. |
| 167 | * |
| 168 | * However, if each thread had a different host process (and this was discussed |
| 169 | * for SMP support) this won't be needed. |
| 170 | * |
| 171 | * And this will not need be used when (and if) we'll add support to the host |
Jeff Dike | ba180fd | 2007-10-16 01:27:00 -0700 | [diff] [blame] | 172 | * SKAS patch. |
| 173 | */ |
Paolo 'Blaisorblade' Giarrusso | 3feb885 | 2006-03-31 02:30:25 -0800 | [diff] [blame] | 174 | |
Jeff Dike | 77bf440 | 2007-10-16 01:26:58 -0700 | [diff] [blame] | 175 | int arch_switch_tls(struct task_struct *from, struct task_struct *to) |
Paolo 'Blaisorblade' Giarrusso | aa6758d | 2006-03-31 02:30:22 -0800 | [diff] [blame] | 176 | { |
Paolo 'Blaisorblade' Giarrusso | 3feb885 | 2006-03-31 02:30:25 -0800 | [diff] [blame] | 177 | if (!host_supports_tls) |
| 178 | return 0; |
| 179 | |
Jeff Dike | ba180fd | 2007-10-16 01:27:00 -0700 | [diff] [blame] | 180 | /* |
| 181 | * We have no need whatsoever to switch TLS for kernel threads; beyond |
Paolo 'Blaisorblade' Giarrusso | 54d8d3b | 2006-03-31 02:30:24 -0800 | [diff] [blame] | 182 | * that, that would also result in us calling os_set_thread_area with |
Jeff Dike | ba180fd | 2007-10-16 01:27:00 -0700 | [diff] [blame] | 183 | * userspace_pid[cpu] == 0, which gives an error. |
| 184 | */ |
Paolo 'Blaisorblade' Giarrusso | 54d8d3b | 2006-03-31 02:30:24 -0800 | [diff] [blame] | 185 | if (likely(to->mm)) |
| 186 | return load_TLS(O_FORCE, to); |
| 187 | |
| 188 | return 0; |
Paolo 'Blaisorblade' Giarrusso | aa6758d | 2006-03-31 02:30:22 -0800 | [diff] [blame] | 189 | } |
| 190 | |
Paolo 'Blaisorblade' Giarrusso | aa6758d | 2006-03-31 02:30:22 -0800 | [diff] [blame] | 191 | static int set_tls_entry(struct task_struct* task, struct user_desc *info, |
| 192 | int idx, int flushed) |
| 193 | { |
| 194 | struct thread_struct *t = &task->thread; |
| 195 | |
| 196 | if (idx < GDT_ENTRY_TLS_MIN || idx > GDT_ENTRY_TLS_MAX) |
| 197 | return -EINVAL; |
| 198 | |
| 199 | t->arch.tls_array[idx - GDT_ENTRY_TLS_MIN].tls = *info; |
| 200 | t->arch.tls_array[idx - GDT_ENTRY_TLS_MIN].present = 1; |
| 201 | t->arch.tls_array[idx - GDT_ENTRY_TLS_MIN].flushed = flushed; |
| 202 | |
| 203 | return 0; |
| 204 | } |
| 205 | |
| 206 | int arch_copy_tls(struct task_struct *new) |
| 207 | { |
| 208 | struct user_desc info; |
| 209 | int idx, ret = -EFAULT; |
| 210 | |
| 211 | if (copy_from_user(&info, |
| 212 | (void __user *) UPT_ESI(&new->thread.regs.regs), |
| 213 | sizeof(info))) |
| 214 | goto out; |
| 215 | |
| 216 | ret = -EINVAL; |
| 217 | if (LDT_empty(&info)) |
| 218 | goto out; |
| 219 | |
| 220 | idx = info.entry_number; |
| 221 | |
| 222 | ret = set_tls_entry(new, &info, idx, 0); |
| 223 | out: |
| 224 | return ret; |
| 225 | } |
| 226 | |
| 227 | /* XXX: use do_get_thread_area to read the host value? I'm not at all sure! */ |
Jeff Dike | b2cf770 | 2008-02-04 22:30:37 -0800 | [diff] [blame^] | 228 | static int get_tls_entry(struct task_struct *task, struct user_desc *info, |
| 229 | int idx) |
Paolo 'Blaisorblade' Giarrusso | aa6758d | 2006-03-31 02:30:22 -0800 | [diff] [blame] | 230 | { |
| 231 | struct thread_struct *t = &task->thread; |
| 232 | |
| 233 | if (!t->arch.tls_array) |
| 234 | goto clear; |
| 235 | |
| 236 | if (idx < GDT_ENTRY_TLS_MIN || idx > GDT_ENTRY_TLS_MAX) |
| 237 | return -EINVAL; |
| 238 | |
| 239 | if (!t->arch.tls_array[idx - GDT_ENTRY_TLS_MIN].present) |
| 240 | goto clear; |
| 241 | |
| 242 | *info = t->arch.tls_array[idx - GDT_ENTRY_TLS_MIN].tls; |
| 243 | |
| 244 | out: |
Jeff Dike | ba180fd | 2007-10-16 01:27:00 -0700 | [diff] [blame] | 245 | /* |
| 246 | * Temporary debugging check, to make sure that things have been |
Paolo 'Blaisorblade' Giarrusso | aa6758d | 2006-03-31 02:30:22 -0800 | [diff] [blame] | 247 | * flushed. This could be triggered if load_TLS() failed. |
| 248 | */ |
Jeff Dike | ba180fd | 2007-10-16 01:27:00 -0700 | [diff] [blame] | 249 | if (unlikely(task == current && |
| 250 | !t->arch.tls_array[idx - GDT_ENTRY_TLS_MIN].flushed)) { |
Paolo 'Blaisorblade' Giarrusso | aa6758d | 2006-03-31 02:30:22 -0800 | [diff] [blame] | 251 | printk(KERN_ERR "get_tls_entry: task with pid %d got here " |
| 252 | "without flushed TLS.", current->pid); |
| 253 | } |
| 254 | |
| 255 | return 0; |
| 256 | clear: |
Jeff Dike | ba180fd | 2007-10-16 01:27:00 -0700 | [diff] [blame] | 257 | /* |
| 258 | * When the TLS entry has not been set, the values read to user in the |
Paolo 'Blaisorblade' Giarrusso | aa6758d | 2006-03-31 02:30:22 -0800 | [diff] [blame] | 259 | * tls_array are 0 (because it's cleared at boot, see |
| 260 | * arch/i386/kernel/head.S:cpu_gdt_table). Emulate that. |
| 261 | */ |
| 262 | clear_user_desc(info); |
| 263 | info->entry_number = idx; |
| 264 | goto out; |
| 265 | } |
| 266 | |
Jeff Dike | b2cf770 | 2008-02-04 22:30:37 -0800 | [diff] [blame^] | 267 | int sys_set_thread_area(struct user_desc __user *user_desc) |
Paolo 'Blaisorblade' Giarrusso | aa6758d | 2006-03-31 02:30:22 -0800 | [diff] [blame] | 268 | { |
| 269 | struct user_desc info; |
| 270 | int idx, ret; |
| 271 | |
Paolo 'Blaisorblade' Giarrusso | 3feb885 | 2006-03-31 02:30:25 -0800 | [diff] [blame] | 272 | if (!host_supports_tls) |
| 273 | return -ENOSYS; |
| 274 | |
Paolo 'Blaisorblade' Giarrusso | aa6758d | 2006-03-31 02:30:22 -0800 | [diff] [blame] | 275 | if (copy_from_user(&info, user_desc, sizeof(info))) |
| 276 | return -EFAULT; |
| 277 | |
| 278 | idx = info.entry_number; |
| 279 | |
| 280 | if (idx == -1) { |
| 281 | idx = get_free_idx(current); |
| 282 | if (idx < 0) |
| 283 | return idx; |
| 284 | info.entry_number = idx; |
| 285 | /* Tell the user which slot we chose for him.*/ |
| 286 | if (put_user(idx, &user_desc->entry_number)) |
| 287 | return -EFAULT; |
| 288 | } |
| 289 | |
Jeff Dike | 6aa802c | 2007-10-16 01:26:56 -0700 | [diff] [blame] | 290 | ret = do_set_thread_area(&info); |
Paolo 'Blaisorblade' Giarrusso | aa6758d | 2006-03-31 02:30:22 -0800 | [diff] [blame] | 291 | if (ret) |
| 292 | return ret; |
| 293 | return set_tls_entry(current, &info, idx, 1); |
| 294 | } |
| 295 | |
| 296 | /* |
| 297 | * Perform set_thread_area on behalf of the traced child. |
| 298 | * Note: error handling is not done on the deferred load, and this differ from |
| 299 | * i386. However the only possible error are caused by bugs. |
| 300 | */ |
| 301 | int ptrace_set_thread_area(struct task_struct *child, int idx, |
Jeff Dike | b2cf770 | 2008-02-04 22:30:37 -0800 | [diff] [blame^] | 302 | struct user_desc __user *user_desc) |
Paolo 'Blaisorblade' Giarrusso | aa6758d | 2006-03-31 02:30:22 -0800 | [diff] [blame] | 303 | { |
| 304 | struct user_desc info; |
| 305 | |
Paolo 'Blaisorblade' Giarrusso | 3feb885 | 2006-03-31 02:30:25 -0800 | [diff] [blame] | 306 | if (!host_supports_tls) |
| 307 | return -EIO; |
| 308 | |
Paolo 'Blaisorblade' Giarrusso | aa6758d | 2006-03-31 02:30:22 -0800 | [diff] [blame] | 309 | if (copy_from_user(&info, user_desc, sizeof(info))) |
| 310 | return -EFAULT; |
| 311 | |
| 312 | return set_tls_entry(child, &info, idx, 0); |
| 313 | } |
| 314 | |
Jeff Dike | b2cf770 | 2008-02-04 22:30:37 -0800 | [diff] [blame^] | 315 | int sys_get_thread_area(struct user_desc __user *user_desc) |
Paolo 'Blaisorblade' Giarrusso | aa6758d | 2006-03-31 02:30:22 -0800 | [diff] [blame] | 316 | { |
| 317 | struct user_desc info; |
| 318 | int idx, ret; |
| 319 | |
Paolo 'Blaisorblade' Giarrusso | 3feb885 | 2006-03-31 02:30:25 -0800 | [diff] [blame] | 320 | if (!host_supports_tls) |
| 321 | return -ENOSYS; |
| 322 | |
Paolo 'Blaisorblade' Giarrusso | aa6758d | 2006-03-31 02:30:22 -0800 | [diff] [blame] | 323 | if (get_user(idx, &user_desc->entry_number)) |
| 324 | return -EFAULT; |
| 325 | |
| 326 | ret = get_tls_entry(current, &info, idx); |
| 327 | if (ret < 0) |
| 328 | goto out; |
| 329 | |
| 330 | if (copy_to_user(user_desc, &info, sizeof(info))) |
| 331 | ret = -EFAULT; |
| 332 | |
| 333 | out: |
| 334 | return ret; |
| 335 | } |
| 336 | |
| 337 | /* |
| 338 | * Perform get_thread_area on behalf of the traced child. |
| 339 | */ |
| 340 | int ptrace_get_thread_area(struct task_struct *child, int idx, |
| 341 | struct user_desc __user *user_desc) |
| 342 | { |
| 343 | struct user_desc info; |
| 344 | int ret; |
| 345 | |
Paolo 'Blaisorblade' Giarrusso | 3feb885 | 2006-03-31 02:30:25 -0800 | [diff] [blame] | 346 | if (!host_supports_tls) |
| 347 | return -EIO; |
| 348 | |
Paolo 'Blaisorblade' Giarrusso | aa6758d | 2006-03-31 02:30:22 -0800 | [diff] [blame] | 349 | ret = get_tls_entry(child, &info, idx); |
| 350 | if (ret < 0) |
| 351 | goto out; |
| 352 | |
| 353 | if (copy_to_user(user_desc, &info, sizeof(info))) |
| 354 | ret = -EFAULT; |
| 355 | out: |
| 356 | return ret; |
| 357 | } |
Paolo 'Blaisorblade' Giarrusso | 54d8d3b | 2006-03-31 02:30:24 -0800 | [diff] [blame] | 358 | |
Paolo 'Blaisorblade' Giarrusso | 3feb885 | 2006-03-31 02:30:25 -0800 | [diff] [blame] | 359 | |
Jeff Dike | ba180fd | 2007-10-16 01:27:00 -0700 | [diff] [blame] | 360 | /* |
| 361 | * XXX: This part is probably common to i386 and x86-64. Don't create a common |
| 362 | * file for now, do that when implementing x86-64 support. |
| 363 | */ |
Jeff Dike | 65a58ab | 2007-05-06 14:51:20 -0700 | [diff] [blame] | 364 | static int __init __setup_host_supports_tls(void) |
| 365 | { |
Paolo 'Blaisorblade' Giarrusso | 3feb885 | 2006-03-31 02:30:25 -0800 | [diff] [blame] | 366 | check_host_supports_tls(&host_supports_tls, &host_gdt_entry_tls_min); |
| 367 | if (host_supports_tls) { |
| 368 | printk(KERN_INFO "Host TLS support detected\n"); |
| 369 | printk(KERN_INFO "Detected host type: "); |
| 370 | switch (host_gdt_entry_tls_min) { |
| 371 | case GDT_ENTRY_TLS_MIN_I386: |
| 372 | printk("i386\n"); |
| 373 | break; |
| 374 | case GDT_ENTRY_TLS_MIN_X86_64: |
| 375 | printk("x86_64\n"); |
| 376 | break; |
| 377 | } |
| 378 | } else |
| 379 | printk(KERN_ERR " Host TLS support NOT detected! " |
| 380 | "TLS support inside UML will not work\n"); |
Jeff Dike | a5d2f46 | 2006-04-10 22:53:26 -0700 | [diff] [blame] | 381 | return 0; |
Paolo 'Blaisorblade' Giarrusso | 3feb885 | 2006-03-31 02:30:25 -0800 | [diff] [blame] | 382 | } |
| 383 | |
| 384 | __initcall(__setup_host_supports_tls); |