from small one page howto to huge articles all in one place

search text in:




Other .linuxhowtos.org sites: www.linuxhowtos.org
toolsntoys.linuxhowtos.org



Last additions:
How to make X listen on port 6000

How to make X listen on port 6000

words:

34

views:

83631

userrating:

average rating: 1.2 (52 votes) (1=very good 6=terrible)


May, 25th 2007:
April, 26th 2007:
Apr, 10th. 2007:
Druckversion . pdf icon
You are here: Misc

Gentoo udev Guide


1. What is udev?


The /dev Directory


When Linux-users talk about the hardware on their system in the vicinity of people who believe Linux is some sort of virus or brand of coffee, the use of "slash dev slash foo" will return a strange look for sure. But for the fortunate user (and that includes you) using /dev/hda1 is just a fast way of explaining that we are talking about the primary master IDE, first partition. Or aren't we?
We all know what a device file is. Some even know why device files have special numbers when we take a closer look at them when we issue ls -l in /dev. But what we always take for granted is that the primary master IDE disk is referred to as /dev/hda. You might not see it this way, but this is a flaw by design.
Think about hotpluggable devices like USB, IEEE1394, hot-swappable PCI, ... What is the first device? And for how long? What will the other devices be named when the first one disappears? How will that affect ongoing transactions? Wouldn't it be fun that a printing job is suddenly moved from your supernew laserprinter to your almost-dead matrix printer because your mom decided to pull the plug of the laserprinter which happened to be the first printer?


Enter udev. The goals of the udev project are both interesting and needed:
- Runs in userspace
- Dynamically creates/removes device files
- Provides consistent naming
- Provides a user-space API
To provide these features, udev is developed in three separate projects: namedev, libsysfs and, of course, udev.

namedev


Namedev allows you to define the device naming separately from the udev program. This allows for flexible naming policies and naming schemes developed by separate entities. This device naming subsystem provides a standard interface that udev can use.
Currently only a single naming scheme is provided by namedev; the one provided by LANANA, used by the majority of Linux systems currently and therefore very suitable for the majority of Linux users.
Namedev uses a 5-step procedure to find out the name of a given device. If the device name is found in one of the given steps, that name is used. The steps are:
- label or serial number
- bus device number
- bus topology
- statically given name
- kernel provided name

The label or serial number step checks if the device has a unique identifier. For instance USB devices have a unique USB serial number; SCSI devices have a unique UUID. If namedev finds a match between this unique number and a given configuration file, the name provided in the configuration file is used.
The bus device number step checks the device bus number. For non-hot-swappable environments this procedure is sufficient to identify a hardware device. For instance PCI bus numbers rarely change in the lifetime of a system. Again, if namedev finds a match between this position and a given configuration file, the name provided in that configuration file is used.
Likewise the bus topology is a rather static way of defining devices as long as the user doesn't switch devices. When the position of the device matches a given setting provided by the user, the accompanying name is used.
The fourth step, statically given name, is a simple string replacement. When the kernel name (the default name) matches a given replacement string, the substitute name will be used.
The final step (kernel provided name) is a catch-all: this one takes the default name provided by the kernel. In the majority of cases this is sufficient as it matches the device naming used on current Linux systems.

libsysfs


udev interacts with the kernel through the sysfs pseudo filesystem. The libsysfs project provides a common API to access the information given by the sysfs filesystem in a generic way. This allows for querying all kinds of hardware without having to make assumptions on the kind of hardware.

udev


Every time the kernel notices an update in the device structure, it calls the /sbin/hotplug program. Hotplug runs the applications linked in the /etc/hotplug.d/default directory where you will also find a symlink to the udev application. Hotplug directs the information given by the kernel to the udev application which performs the necessary actions on the /dev structure (creating or deleting device files).

2. Using udev on Gentoo


Requirements


udev is meant to be used in combination with a 2.6 kernel (like development-sources or gentoo-dev-sources). If you're using such a kernel then you just have to make sure that you have a recent sys-apps/baselayout version. That's all you need.
Code Listing 2.1: Installing udev
# emerge udev

udev will install hotplug-base as one of it's dependencies. You do not need to install hotplug unless you want your modules automatically loaded when you plug devices in. hotplug also handles the automated bringup of network devices and firmware downloading.
Code Listing 2.2: Installing optional hotplug scripts
# emerge hotplug

If you want modules loaded for devices that have been plugged in before you boot, use the coldplug package:
Code Listing 2.3: Installing the coldplug package
# emerge coldplug

Kernelwise, if you're using the default set by genkernel then you're all set. Otherwise be sure to activate the following options:
Code Listing 2.4: Required kernel options
General setup --->   
[*] Support for hot-pluggable devices

File systems --->
Pseudo filesystems --->
[*] /proc file system support
[*] Virtual memory file system support (former shm fs)

You can leave the /dev file system support (OBSOLETE) active if you wish but you have to make sure that "Automatically mount at boot" is disabled:
Code Listing 2.5: Don't automatically mount devfsd
File systems --->   
Pseudo Filesystems --->
[*] /dev file system support (OBSOLETE)
[ ] Automatically mount at boot

Configuration


If you want to use the udev-tweaks Gentoo added to make your life comfortable, then read no more. Gentoo will use udev but keep a static /dev so that you will never have any missing device nodes. The Gentoo init scripts won't run the devfsd daemon and will deactivate devfs when you boot up.

But if you are a die-hard and want to run a udev-only, no-tweaked system as is intended by the udev development (including the difficulties of missing device nodes because udev doesn't support them yet), by all means, read on :)

We'll deactivate the rules that save the device file nodes: edit the RC_DEVICE_TARBALL variable in /etc/conf.d/rc and set it to no:
Code Listing 2.6: /etc/conf.d/rc
RC_DEVICE_TARBALL="no"

If you have included devfs support in your kernel, you can deactivate it in the bootloader configuration: add gentoo=nodevfs as a kernel parameter. If you want to use devfs and deactivate udev, add gentoo=noudev as kernel parameter.

3. Known Issues


Missing device node files at boot


If you can't boot successfully because you get an error about /dev/null not found, or because the initial console is missing, the problem is that you lack some device files that must be available before /dev is mounted and handled by udev. This is common on Gentoo machines installed from old media.

If you run sys-apps/baselayout-1.8.12 or later, this problem is alleviated since the boot process should still manage to complete. However, to get rid of those annoying warnings, you should create the missing device nodes as described below.

To see which devices nodes are present before the /dev filesystem is mounted, run the following commands:
Code Listing 3.1: Listing device nodes available at boot
# mkdir test   
# mount --bind / test
# cd test/dev
# ls

The devices needed for a successful boot are /dev/null and /dev/console. If they didn't show up in the previous test, you have to create them manually. Issue the following commands in the test/dev/ directory:
Code Listing 3.2: Creating necessary device node files
# mknod -m 660 console c 5 1   
# mknod -m 660 null c 1 3

When you're finished, don't forget to unmount the test/ directory:
Code Listing 3.3: Unmounting the test/ directory
# cd ../..   
# umount test
# rmdir test

udev and nvidia


If you use the proprietary driver from nVidia and the X server fails to start on a udev-only system, then make sure you have:

the nvidia module listed in /etc/modules.autoload.d/kernel-2.6
a version of nvidia-kernel equal to or greater than media-video/nvidia-kernel-1.0.5336-r2
a version of baselayout equal to or greater than sys-apps/baselayout-1.8.12

LVM2 Names Disappear


When you use udev and LVM2 together, you might notice that your created volume groups and logical volumes have disappeared. Well, they haven't, but they are unfortunately named /dev/dm-# with # being 0, 1, ...

To fix this, edit /etc/udev/rules.d/50-udev.rules and uncomment the following line:
Code Listing 3.4: Uncomment this line from /etc/udev/rules.d/50-udev.rules
KERNEL="dm-[0-9]*",     PROGRAM="/sbin/devmap_name %M %m", NAME="%k", SYMLINK="%c"

No Consistent Naming between DevFS and udev


Even though our intention is to have a consistent naming scheme between both dynamical device management solutions, sometimes naming differences do occur. One reported clash is with a HP Smart Array 5i RAID controller (more precisely the cciss kernel module). With udev, the devices are named /dev/cciss/cXdYpZ with X, Y and Z regular numbers. With devfs, the devices are /dev/hostX/targetY/partZ or symlinked from /dev/cciss/cXdY.

If this is the case, don't forget to update your /etc/fstab and bootloader configuration files accordingly.

Other issues


If device nodes are not created when a module is loaded from /etc/modules.autoload.d/kernel-2.6 but they appear when you load the module manually with modprobe then you should try upgrading to sys-apps/baselayout-1.8.12 or later.

Support for the framebuffer devices (/dev/fb/*) comes with the kernel starting from version 2.6.6-rc2.

For kernels older than 2.6.4 you have to explicitly include support for the /dev/pts filesystem.
Code Listing 3.5: Enabling the /dev/pts filesystem
File systems --->   
Pseudo filesystems --->
[*] /dev/pts file system for Unix98 PTYs

4. Resources & Acknowledgements


The udev talk on the Linux Symposium (Ottawa, Ontario Canada - 2003) given by Greg Kroah-Hartman (IBM Corporation) provided a solid understanding on the udev application.

Decibel's UDEV Primer is an in-depth document about udev and Gentoo.

Writing udev rules by fellow Gentoo developer Daniel Drake is an excellent document to learn how to customize your udev installation.
rate this article:
current rating: average rating: 1.3 (33 votes) (1=very good 6=terrible)
Your rating:
Very good (1) Good (2) ok (3) average (4) bad (5) terrible (6)

back



Support us on Content Nation

New Packages

- as rdf newsfeed
- as rss newsfeed
- as Atom newsfeed
2026-03-09
amazon-ecr-credential-helper - 0.12.0
Ebuild name:

app-containers/amazon-ecr-credential-helper-0.12.0

Description

Automatically gets credentials for Amazon ECR on

Added to portage

2026-03-09

barman - 3.17.0
Ebuild name:

dev-db/barman-3.17.0

Description

Administration tool for disaster recovery of PostgreSQL servers

Added to portage

2026-03-09

binaryornot - 0.6.0
Ebuild name:

dev-python/binaryornot-0.6.0

Description

Ultra-lightweight pure Python package to guess whether a file is binar

Added to portage

2026-03-09

cachetools - 7.0.4
Ebuild name:

dev-python/cachetools-7.0.4

Description

Extensible memoizing collections and decorators

Added to portage

2026-03-09

catch - 3.13.0
Ebuild name:

dev-cpp/catch-3.13.0

Description

Modern C++ header-only framework for unit-tests

Added to portage

2026-03-09

clamav - 0.103.12-r4
Ebuild name:

app-antivirus/clamav-0.103.12-r4

Description

Clam Anti-Virus Scanner

Added to portage

2026-03-09

clamav - 1.4.4
Ebuild name:

app-antivirus/clamav-1.4.4

Description

Clam Anti-Virus Scanner

Added to portage

2026-03-09

clamav - 1.5.2
Ebuild name:

app-antivirus/clamav-1.5.2

Description

Clam Anti-Virus Scanner

Added to portage

2026-03-09

cloudflare-warp - 2026.1.150.0-r1
Ebuild name:

net-vpn/cloudflare-warp-2026.1.150.0-r1

Description

Cloudflare Warp Client

Added to portage

2026-03-09

configargparse - 1.7.3
Ebuild name:

dev-python/configargparse-1.7.3

Description

Drop-in replacement for argparse supporting config files and env va

Added to portage

2026-03-09

cursor-agent - 2026.02.27
Ebuild name:

dev-util/cursor-agent-2026.02.27

Description

Cursor CLI - interact with AI agents directly from your terminal

Added to portage

2026-03-09

dbeaver-bin - 26.0.0
Ebuild name:

dev-db/dbeaver-bin-26.0.0

Description

Free universal database tool (community edition)

Added to portage

2026-03-09

dos2unix - 7.5.4
Ebuild name:

app-text/dos2unix-7.5.4

Description

Convert DOS or MAC text files to UNIX format or vice versa

Added to portage

2026-03-09

drpm - 0.5.3
Ebuild name:

app-arch/drpm-0.5.3

Description

A library for making, reading and applying deltarpm packages

Added to portage

2026-03-09

elasticsearch - 9.3.1
Ebuild name:

app-misc/elasticsearch-9.3.1

Description

Free and Open, Distributed, RESTful Search Engine

Added to portage

2026-03-09

entr - 5.8
Ebuild name:

app-admin/entr-5.8

Description

Run arbitrary commands when files change

Added to portage

2026-03-09

fd - 10.4.1
Ebuild name:

sys-apps/fd-10.4.1

Description

Alternative to find that provides sensible defaults for 80% of the use cases

Added to portage

2026-03-09

freeciv - 3.2.3
Ebuild name:

games-strategy/freeciv-3.2.3

Description

Multiplayer strategy game (Civilization Clone)

Added to portage

2026-03-09

fvwm3 - 1.1.4
Ebuild name:

x11-wm/fvwm3-1.1.4

Description

A multiple large virtual desktop window manager derived from fvwm

Added to portage

2026-03-09

fzf - 0.70.0
Ebuild name:

app-shells/fzf-0.70.0

Description

General-purpose command-line fuzzy finder, written in Golang

Added to portage

2026-03-09

gallery-dl - 1.31.9
Ebuild name:

net-misc/gallery-dl-1.31.9

Description

Download image galleries and collections from several image hosting site

Added to portage

2026-03-09

gcc - 16.0.1_p20260308
Ebuild name:

sys-devel/gcc-16.0.1_p20260308

Description

The GNU Compiler Collection

Added to portage

2026-03-09

gnumeric - 1.12.60
Ebuild name:

app-office/gnumeric-1.12.60

Description

The GNOME Spreadsheet

Added to portage

2026-03-09

goffice - 0.10.60
Ebuild name:

x11-libs/goffice-0.10.60

Description

A library of document-centric objects and utilities

Added to portage

2026-03-09

graphviz - 14.1.3
Ebuild name:

media-gfx/graphviz-14.1.3

Description

Open Source Graph Visualization Software

Added to portage

2026-03-09

groonga - 16.0.0-r1
Ebuild name:

app-text/groonga-16.0.0-r1

Description

An Embeddable Fulltext Search Engine

Added to portage

2026-03-09

joplin-desktop - 3.6.4
Ebuild name:

app-office/joplin-desktop-3.6.4

Description

Secure note taking and to-do app with synchronization capabilities

Added to portage

2026-03-09

mldonkey - 0.0.4b-r2
Ebuild name:

app-emacs/mldonkey-0.0.4b-r2

Description

An Emacs Lisp interface to the MLDonkey core

Added to portage

2026-03-09

mmm-mode - 0.5.11
Ebuild name:

app-emacs/mmm-mode-0.5.11

Description

Enables the user to edit different parts of a file in different major mod

Added to portage

2026-03-09

moarvm - 2026.02
Ebuild name:

dev-lang/moarvm-2026.02

Description

A 6model-based VM for NQP and Raku

Added to portage

2026-03-09

moccur-edit - 2.16
Ebuild name:

app-emacs/moccur-edit-2.16

Description

An improved interface to color-moccur for editing

Added to portage

2026-03-09

mocker - 0.5.0
Ebuild name:

app-emacs/mocker-0.5.0

Description

Simple mocking framework for Emacs

Added to portage

2026-03-09

modus-themes - 5.1.0
Ebuild name:

app-emacs/modus-themes-5.1.0

Description

Highly accessible themes for GNU Emacs

Added to portage

2026-03-09

modus-themes - 5.2.0
Ebuild name:

app-emacs/modus-themes-5.2.0

Description

Highly accessible themes for GNU Emacs

Added to portage

2026-03-09

modus-themes - 9999
Ebuild name:

app-emacs/modus-themes-9999

Description

Highly accessible themes for GNU Emacs

Added to portage

2026-03-09

mongodb-compass-bin - 1.49.2
Ebuild name:

dev-db/mongodb-compass-bin-1.49.2

Description

GUI for MongoDB

Added to portage

2026-03-09

moto - 5.1.22
Ebuild name:

dev-python/moto-5.1.22

Description

Mock library for boto

Added to portage

2026-03-09

nodejs - 24.14.0
Ebuild name:

net-libs/nodejs-24.14.0

Description

A JavaScript runtime built on Chrome's V8 JavaScript engine

Added to portage

2026-03-09

nqp - 2026.02
Ebuild name:

dev-lang/nqp-2026.02

Description

Not Quite Perl, a Raku bootstrapping compiler

Added to portage

2026-03-09

octave - 11.1.0
Ebuild name:

sci-mathematics/octave-11.1.0

Description

High-level interactive language for numerical computations

Added to portage

2026-03-09

openpace - 1.1.4
Ebuild name:

dev-libs/openpace-1.1.4

Description

Cryptographic library for EAC version 2

Added to portage

2026-03-09

pipewire - 1.6.1
Ebuild name:

media-video/pipewire-1.6.1

Description

Multimedia processing graphs

Added to portage

2026-03-09

rakudo - 2026.02
Ebuild name:

dev-lang/rakudo-2026.02

Description

A compiler for the Raku programming language

Added to portage

2026-03-09

robin-map - 1.4.1
Ebuild name:

dev-cpp/robin-map-1.4.1

Description

C++ fast hash map and hash set using robin hood hashing

Added to portage

2026-03-09

sdl3-image - 3.4.0
Ebuild name:

media-libs/sdl3-image-3.4.0

Description

A simple library to load images of various formats as SDL surfaces.

Added to portage

2026-03-09

sdl3-mixer - 3.1.2_rc1
Ebuild name:

media-libs/sdl3-mixer-3.1.2_rc1

Description

Simple Direct Media Layer Mixer Library

Added to portage

2026-03-09

spectacle - 6.6.2-r1
Ebuild name:

kde-plasma/spectacle-6.6.2-r1

Description

Screenshot capture utility

Added to portage

2026-03-09

sphinx-autoapi - 3.8.0
Ebuild name:

dev-python/sphinx-autoapi-3.8.0

Description

A new approach to API documentation in Sphinx

Added to portage

2026-03-09

ugrd - 2.2.0
Ebuild name:

sys-kernel/ugrd-2.2.0

Description

Python based POSIX initramfs generator with TOML definitions

Added to portage

2026-03-09

zchunk - 1.5.3
Ebuild name:

app-arch/zchunk-1.5.3

Description

File format designed for highly efficient deltas with good compression

Added to portage

2026-03-09

2026-03-08
bibutils - 7.2
Ebuild name:

app-text/bibutils-7.2

Description

Interconverts between various bibliography formats using common XML intermedi

Added to portage

2026-03-08

django-polymorphic - 4.11.2
Ebuild name:

dev-python/django-polymorphic-4.11.2

Description

Seamless Polymorphic Inheritance for Django Models

Added to portage

2026-03-08

doxygen - 1.16.1
Ebuild name:

app-text/doxygen-1.16.1

Description

Documentation system for most programming languages

Added to portage

2026-03-08

e2fsprogs - 1.47.4
Ebuild name:

sys-fs/e2fsprogs-1.47.4

Description

Standard EXT2/EXT3/EXT4 filesystem utilities

Added to portage

2026-03-08

fpylll - 0.6.4-r1
Ebuild name:

dev-python/fpylll-0.6.4-r1

Description

Python bindings for sci-libs/fplll

Added to portage

2026-03-08

gcc - 15.2.1_p20260307
Ebuild name:

sys-devel/gcc-15.2.1_p20260307

Description

The GNU Compiler Collection

Added to portage

2026-03-08

gnome-shell-extension-weather-oclock - 50.0
Ebuild name:

gnome-extra/gnome-shell-extension-weather-oclock-50.0

Description

Display the current weather inside the pill n

Added to portage

2026-03-08

jaraco-context - 6.1.1
Ebuild name:

dev-python/jaraco-context-6.1.1

Description

Context managers by jaraco

Added to portage

2026-03-08

kokkos - 5.0.2
Ebuild name:

dev-cpp/kokkos-5.0.2

Description

C++ Performance Portability Programming EcoSystem

Added to portage

2026-03-08

kup - 0.3.6-r5
Ebuild name:

dev-util/kup-0.3.6-r5

Description

kernel.org uploader tool

Added to portage

2026-03-08

libtmux - 0.55.0
Ebuild name:

dev-python/libtmux-0.55.0

Description

Typed library that provides an ORM wrapper for tmux, a terminal multiplex

Added to portage

2026-03-08

libvirt - 12.1.0-r1
Ebuild name:

app-emulation/libvirt-12.1.0-r1

Description

C toolkit to manipulate virtual machines

Added to portage

2026-03-08

lutris - 0.5.19-r1
Ebuild name:

games-util/lutris-0.5.19-r1

Description

An open source gaming platform for GNU/Linux

Added to portage

2026-03-08

lutris - 0.5.20-r1
Ebuild name:

games-util/lutris-0.5.20-r1

Description

An open source gaming platform for GNU/Linux

Added to portage

2026-03-08

lutris - 0.5.22-r1
Ebuild name:

games-util/lutris-0.5.22-r1

Description

An open source gaming platform for GNU/Linux

Added to portage

2026-03-08

mac-fdisk - 0.1_p18-r2
Ebuild name:

sys-fs/mac-fdisk-0.1_p18-r2

Description

Mac/PowerMac disk partitioning utility

Added to portage

2026-03-08

mercurial - 7.2-r1
Ebuild name:

dev-vcs/mercurial-7.2-r1

Description

Scalable distributed SCM

Added to portage

2026-03-08

mgorny-dev-scripts - 67
Ebuild name:

app-portage/mgorny-dev-scripts-67

Description

Handy scripts for ebuild development and more

Added to portage

2026-03-08

mimalloc - 2.2.7
Ebuild name:

dev-libs/mimalloc-2.2.7

Description

A compact general purpose allocator with excellent performance

Added to portage

2026-03-08

mimalloc - 3.2.8
Ebuild name:

dev-libs/mimalloc-3.2.8

Description

A compact general purpose allocator with excellent performance

Added to portage

2026-03-08

mold - 2.40.4-r2
Ebuild name:

sys-devel/mold-2.40.4-r2

Description

A Modern Linker

Added to portage

2026-03-08

onlyoffice-bin - 9.3.1
Ebuild name:

app-office/onlyoffice-bin-9.3.1

Description

A free and open source office and productivity suite (binary versio

Added to portage

2026-03-08

petsc - 3.24.5
Ebuild name:

sci-mathematics/petsc-3.24.5

Description

Portable, Extensible Toolkit for Scientific Computation

Added to portage

2026-03-08

plasma-meta - 6.6.0-r1
Ebuild name:

kde-plasma/plasma-meta-6.6.0-r1

Description

Merge this to pull in all Plasma 6 packages

Added to portage

2026-03-08

plasma-meta - 6.6.2-r1
Ebuild name:

kde-plasma/plasma-meta-6.6.2-r1

Description

Merge this to pull in all Plasma 6 packages

Added to portage

2026-03-08

pyspellchecker - 0.9.0
Ebuild name:

dev-python/pyspellchecker-0.9.0

Description

Pure python spell checker based on work by Peter Norvig

Added to portage

2026-03-08

ristretto - 0.14.0
Ebuild name:

media-gfx/ristretto-0.14.0

Description

A fast and lightweight picture viewer for Xfce

Added to portage

2026-03-08

slepc - 3.24.2
Ebuild name:

sci-mathematics/slepc-3.24.2

Description

Scalable Library for Eigenvalue Problem Computations

Added to portage

2026-03-08

trilinos - 17.0.0
Ebuild name:

sci-libs/trilinos-17.0.0

Description

Scientific library collection for large scale problems

Added to portage

2026-03-08

upmpdcli - 1.9.14
Ebuild name:

media-sound/upmpdcli-1.9.14

Description

UPnP Media Renderer front-end for MPD, the Music Player Daemon

Added to portage

2026-03-08

wine-staging - 11.4
Ebuild name:

app-emulation/wine-staging-11.4

Description

Free implementation of Windows(tm) on Unix, with Wine-Staging patch

Added to portage

2026-03-08

wsjtx_improved - 3.1.0
Ebuild name:

media-radio/wsjtx_improved-3.1.0

Description

Weak signal ham radio communication with improvements

Added to portage

2026-03-08

xfce4-terminal - 1.2.0
Ebuild name:

x11-terms/xfce4-terminal-1.2.0

Description

A terminal emulator for the Xfce desktop environment

Added to portage

2026-03-08

xpadneo - 0.10
Ebuild name:

games-util/xpadneo-0.10

Description

Advanced Linux Driver for Xbox One Wireless Controller

Added to portage

2026-03-08

zmac - 1.3-r2
Ebuild name:

dev-embedded/zmac-1.3-r2

Description

Z80 macro cross-assembler

Added to portage

2026-03-08

rdf newsfeed | rss newsfeed | Atom newsfeed
Copyright 2004-2025 Sascha Nitsch Unternehmensberatung GmbH
- Copyright and legal notices -
Time to create this page: 86.9 ms