public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* set_fs() preemption safety? [was sys_fs() safety oops !]
@ 2004-07-04 14:36 BAIN
  2004-07-04 14:53 ` Arnd Bergmann
  0 siblings, 1 reply; 3+ messages in thread
From: BAIN @ 2004-07-04 14:36 UTC (permalink / raw)
  To: linux-kernel

is the following block safe to be used in preemptible kernels?

old_fs = get_fs();
set_fs(KERNEL_DS);

do_your_things here; (usually call sys calls stuff from kernel space)

set_fs(old_fs);

i will explain my doubt further,
in nonpreempt kernels this changes the fs segment only on current cpu
and is restored before other code is run on that cpu, you are strictly
_not_ suppose to call schedule without restoring fs first.

but what about when preempt is enabled

even if i don't call schedule other code might start running on this
current cpu without me restoring the fs first?

this code block appears in many places.. even in 2.6 kernels without
disabling the preemption or holding spinlocks. so i am confused...

ne explanations are welcome, thanks in advance

and if this sound a lot funny please laugh your hearts out, a favour
of explaining the joke to this newbee is always welcome
-- 
BAIN

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2004-07-04 15:14 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2004-07-04 14:36 set_fs() preemption safety? [was sys_fs() safety oops !] BAIN
2004-07-04 14:53 ` Arnd Bergmann
2004-07-04 15:14   ` BAIN

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox