Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
L
linux
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
linux
Commits
8a9af19f
Commit
8a9af19f
authored
May 14, 2003
by
Patrick Mochel
Browse files
Options
Browse Files
Download
Plain Diff
Merge osdl.org:/home/mochel/src/kernel/devel/linux-2.5-virgin
into osdl.org:/home/mochel/src/kernel/devel/linux-2.5-core
parents
77b3055a
43524309
Changes
16
Show whitespace changes
Inline
Side-by-side
Showing
16 changed files
with
129 additions
and
186 deletions
+129
-186
Documentation/driver-model/binding.txt
Documentation/driver-model/binding.txt
+4
-4
Documentation/driver-model/bus.txt
Documentation/driver-model/bus.txt
+2
-2
Documentation/driver-model/class.txt
Documentation/driver-model/class.txt
+1
-1
Documentation/driver-model/device.txt
Documentation/driver-model/device.txt
+6
-4
Documentation/driver-model/driver.txt
Documentation/driver-model/driver.txt
+7
-7
Documentation/driver-model/interface.txt
Documentation/driver-model/interface.txt
+3
-3
Documentation/driver-model/overview.txt
Documentation/driver-model/overview.txt
+5
-5
Documentation/driver-model/platform.txt
Documentation/driver-model/platform.txt
+5
-5
Documentation/driver-model/porting.txt
Documentation/driver-model/porting.txt
+5
-5
Documentation/kobject.txt
Documentation/kobject.txt
+12
-12
drivers/base/base.h
drivers/base/base.h
+0
-2
drivers/base/core.c
drivers/base/core.c
+8
-12
fs/sysfs/bin.c
fs/sysfs/bin.c
+60
-113
include/linux/device.h
include/linux/device.h
+4
-1
include/linux/sysfs.h
include/linux/sysfs.h
+2
-9
lib/kobject.c
lib/kobject.c
+5
-1
No files found.
Documentation/driver-model/binding.txt
View file @
8a9af19f
...
...
@@ -11,11 +11,11 @@ structures, most of the binding can take place using common code.
Bus
~~~
The bus type structure contains a list of all devices that on that bus
The bus type structure contains a list of all devices that
are
on that bus
type in the system. When device_register is called for a device, it is
inserted into the end of this list. The bus object also contains a
list of all drivers of that bus type. When driver_register is called
for a driver, it is inserted
into
the end of this list. These are the
for a driver, it is inserted
at
the end of this list. These are the
two events which trigger driver binding.
...
...
@@ -42,7 +42,7 @@ Device Class
~~~~~~~~~~~~
Upon the successful completion of probe, the device is registered with
the class to which it belongs. Device drivers belong to one and only
the class to which it belongs. Device drivers belong to one and only
one
class, and that is set in the driver's devclass field.
devclass_add_device is called to enumerate the device within the class
and actually register it with the class, which happens with the
...
...
@@ -61,7 +61,7 @@ driver's list of devices.
sysfs
~~~~~
~~~
~~~~~
A symlink is created in the bus's 'devices' directory that points to
the device's directory in the physical hierarchy.
...
...
Documentation/driver-model/bus.txt
View file @
8a9af19f
...
...
@@ -58,7 +58,7 @@ match(): Attaching Drivers to Devices
The format of device ID structures and the semantics for comparing
them are inherently bus-specific. Drivers typically declare an array
of device IDs of device they support that reside in a bus-specific
of device IDs of device
s
they support that reside in a bus-specific
driver structure.
The purpose of the match callback is provide the bus an opportunity to
...
...
@@ -153,7 +153,7 @@ directory:
|-- agpgart
`-- e100
Each device that is discovered a bus of that type gets a symlink in
Each device that is discovered
on
a bus of that type gets a symlink in
the bus's devices directory to the device's directory in the physical
hierarchy:
...
...
Documentation/driver-model/class.txt
View file @
8a9af19f
...
...
@@ -105,7 +105,7 @@ default subdirectories:
Drivers registered with the class get a symlink in the drivers/ directory
that points the driver's directory (under its bus directory):
that points t
o t
he driver's directory (under its bus directory):
class/
`-- input
...
...
Documentation/driver-model/device.txt
View file @
8a9af19f
...
...
@@ -47,11 +47,13 @@ intf_list: List of intf_data. There is one structure allocated for
children: List of child devices.
parent: *** FIXME ***
name: ASCII description of device.
Example: " 3Com Corporation 3c905 100BaseTX [Boomerang]"
bus_id: ASCII representation of device's bus position. This
field should a name unique across all devices on the
field should
be
a name unique across all devices on the
bus type the device belongs to.
Example: PCI bus_ids are in the form of
...
...
@@ -66,12 +68,12 @@ bus: Pointer to struct bus_type that device belongs to.
dir: Device's sysfs directory.
class_num: Class-enumerated value of the device.
driver: Pointer to struct device_driver that controls the device.
driver_data: Driver-specific data.
class_num: Class-enumerated value of the device.
platform_data: Platform data specific to the device.
current_state: Current power state of the device.
...
...
@@ -108,7 +110,7 @@ get_device() will return a pointer to the struct device passed to it
if the reference is not already 0 (if it's in the process of being
removed already).
A driver can
take use
the lock in the device structure using:
A driver can
access
the lock in the device structure using:
void lock_device(struct device * dev);
void unlock_device(struct device * dev);
...
...
Documentation/driver-model/driver.txt
View file @
8a9af19f
...
...
@@ -63,9 +63,9 @@ Most drivers will not be able to be converted completely to the new
model because the bus they belong to has a bus-specific structure with
bus-specific fields that cannot be generalized.
The most common example this are device ID structures. A driver
The most common example
of
this are device ID structures. A driver
typically defines an array of device IDs that it supports. The format
of th
is structure and the semantics for comparing device IDs is
of th
ese structures and the semantics for comparing device IDs are
completely bus-specific. Defining them as bus-specific entities would
sacrifice type-safety, so we keep bus-specific structures around.
...
...
@@ -77,8 +77,8 @@ struct pci_driver {
struct device_driver driver;
};
A definition that included bus-specific fields would look
something
like
(using the eepro100 driver again):
A definition that included bus-specific fields would look
like
(using the eepro100 driver again):
static struct pci_driver eepro100_driver = {
.id_table = eepro100_pci_tbl,
...
...
@@ -109,7 +109,7 @@ struct device_driver object.
Most drivers, however, will have a bus-specific structure and will
need to register with the bus using something like pci_driver_register.
It is important that drivers register their driver
s
as early as
It is important that drivers register their driver
structure
as early as
possible. Registration with the core initializes several fields in the
struct device_driver object, including the reference count and the
lock. These fields are assumed to be valid at all times and may be
...
...
@@ -148,7 +148,7 @@ accesses it.
sysfs
~~~~~
~~~
~~~~~
When a driver is registered, a sysfs directory is created in its
bus's directory. In this directory, the driver can export an interface
...
...
@@ -205,7 +205,7 @@ management based on the requirements of the system and the
user-defined policy.
SUSPEND_NOTIFY notifies the device that a suspend transition is about
to happen. This happens on system power state transition to verify
to happen. This happens on system power state transition
s
to verify
that all devices can successfully suspend.
A driver may choose to fail on this call, which should cause the
...
...
Documentation/driver-model/interface.txt
View file @
8a9af19f
...
...
@@ -82,7 +82,7 @@ Devices are enumerated within the interface. This happens in interface_add_data(
and the enumerated value is stored in the struct intf_data for that device.
sysfs
~~~~~
~~~
~~~~~
Each interface is given a directory in the directory of the device
class it belongs to:
...
...
@@ -120,10 +120,10 @@ device interface.
Many interfaces have a major number associated with them and each
device gets a minor number. Or, multiple interfaces might share one
major number, and each
get
receive a range of minor numbers (like in
major number, and each
will
receive a range of minor numbers (like in
the case of input devices).
These major and minor numbers could be stored in the interface
structure. Major and minor allocation could happen when the interface
structure. Major and minor allocation
s
could happen when the interface
is registered with the class, or via a helper function.
Documentation/driver-model/overview.txt
View file @
8a9af19f
...
...
@@ -9,7 +9,7 @@ Overview
~~~~~~~~
This driver model is a unification of all the current, disparate driver models
that are currently in the kernel. It is intended
is
to augment the
that are currently in the kernel. It is intended to augment the
bus-specific drivers for bridges and devices by consolidating a set of data
and operations into globally accessible data structures.
...
...
@@ -23,7 +23,7 @@ tree as well as its local tree. In fact, the local tree becomes just a subset
of the global tree.
Common data fields can also be moved out of the local bus models into the
global model. Some of the manipulation of these fields can also be
global model. Some of the manipulation
s
of these fields can also be
consolidated. Most likely, manipulation functions will become a set
of helper functions, which the bus drivers wrap around to include any
bus-specific items.
...
...
@@ -71,7 +71,7 @@ fields of struct device unless there is a strong compelling reason to do so.
This abstraction is prevention of unnecessary pain during transitional phases.
If the name of the field changes or is removed, then every downstream driver
will break. On the other hand, if only the bus layer (and not the device
layer) accesses struct device, it is only th
ose that need
to change.
layer) accesses struct device, it is only th
at layer that needs
to change.
User Interface
...
...
@@ -96,9 +96,9 @@ Whenever a device is inserted into the tree, a directory is created for it.
This directory may be populated at each layer of discovery - the global layer,
the bus layer, or the device layer.
The global layer currently creates two files -
name
and 'power'. The
The global layer currently creates two files -
'name'
and 'power'. The
former only reports the name of the device. The latter reports the
current power state of the device. It also be used to set the current
current power state of the device. It
will
also be used to set the current
power state.
The bus layer may also create files for the devices it finds while probing the
...
...
Documentation/driver-model/platform.txt
View file @
8a9af19f
...
...
@@ -10,9 +10,9 @@ host bridges to peripheral buses.
Platform drivers
~~~~~~~~~~~~~~~~
Drivers for platform devices
hav
e typically very simple and
Drivers for platform devices
ar
e typically very simple and
unstructured. Either the device was present at a particular I/O port
and the driver was loaded, or
there
was not. There was no possibility
and the driver was loaded, or
it
was not. There was no possibility
of hotplugging or alternative discovery besides probing at a specific
I/O address and expecting a specific response.
...
...
@@ -49,7 +49,7 @@ devices that it discovers via the bus's add() callback:
Bus IDs
~~~~~~~
Bus IDs are the canonical name
for the device
. There is no globally
Bus IDs are the canonical name
s for the devices
. There is no globally
standard addressing mechanism for legacy devices. In the IA-32 world,
we have Pnp IDs to use, as well as the legacy I/O ports. However,
neither tell what the device really is or have any meaning on other
...
...
@@ -62,7 +62,7 @@ within the scope of the kernel).
For example, a serial driver might find a device at I/O 0x3f8. The
ACPI firmware might also discover a device with PnP ID (_HID)
PNP0501. Both correspond to the same device should be mapped to the
PNP0501. Both correspond to the same device
and
should be mapped to the
canonical name 'serial'.
The bus_id field should be a concatenation of the canonical name and
...
...
@@ -88,7 +88,7 @@ Driver Binding
~~~~~~~~~~~~~~
Legacy drivers assume they are bound to the device once they start up
and probe an I/O port. Divorcing them from this will be a difficult
process. However, that shouldn't prevent us from imp
e
lementing
process. However, that shouldn't prevent us from implementing
firmware-based enumeration.
The firmware should notify the platform bus about devices before the
...
...
Documentation/driver-model/porting.txt
View file @
8a9af19f
...
...
@@ -128,7 +128,7 @@ static inline struct pci_dev * to_pci_dev(struct kobject * kobj)
The bus_id is an ASCII string that contains the device's address on
the bus. The format of this string is bus-specific. This is
necessary for representing device in sysfs.
necessary for representing device
s
in sysfs.
parent is the physical parent of the device. It is important that
the bus driver sets this field correctly.
...
...
@@ -286,7 +286,7 @@ parameters.
It would be difficult and tedious to force every driver on a bus to
simultaneously convert their drivers to generic format. Instead, the
bus driver should define single instances of the generic methods that
forward call
s
to the bus-specific drivers. For instance:
forward call to the bus-specific drivers. For instance:
static int pci_device_remove(struct device * dev)
...
...
@@ -330,8 +330,8 @@ registered with the bus at any time. When registration happens,
devices must be bound to a driver, or drivers must be bound to all
devices that it supports.
Drivers typically contain
a list of device IDs that it supports. The
bus driver compares th
is ID to the ID
of devices registered with it.
A driver typically contains
a list of device IDs that it supports. The
bus driver compares th
ese IDs to the IDs
of devices registered with it.
The format of the device IDs, and the semantics for comparing them are
bus-specific, so the generic model does attempt to generalize them.
...
...
@@ -396,7 +396,7 @@ This is called immediately before /sbin/hotplug is executed.
Step 7: Cleaning up the bus driver.
The generic bus, device, and driver structures provide several fields
that can replace those define privately to the bus driver.
that can replace those define
d
privately to the bus driver.
- Device list.
...
...
Documentation/kobject.txt
View file @
8a9af19f
...
...
@@ -9,7 +9,7 @@ Patrick Mochel <mochel@osdl.org>
The kobject infrastructure performs basic object management that larger
data structures and subsystems can leverage, rather than reimplement
similar functionality. This functionality
consists
primarily concerns:
similar functionality. This functionality primarily concerns:
- Object reference counting.
- Maintaining lists (sets) of objects.
...
...
@@ -45,7 +45,7 @@ and allows kobjects and ksets to be used without being registered
struct kobject is a simple data type that provides a foundation for
more complex object types. It provides a set of basic fields that
almost all complex data types share. kobjects are intended to be
embedded in larger data structures and replace fields
it duplicates
.
embedded in larger data structures and replace fields
they duplicate
.
1.2 Defintion
...
...
@@ -77,7 +77,7 @@ using kobject_register() and kobject_unregister(). Registration
includes inserting the kobject in the list of its dominant kset and
creating a directory for it in sysfs.
Alternatively, one may use a kobject without adding to its kset's list
Alternatively, one may use a kobject without adding
it
to its kset's list
or exporting it via sysfs, by simply calling kobject_init(). An
initialized kobject may later be added to the object hierarchy by
calling kobject_add(). An initialized kobject may be used for
...
...
@@ -87,8 +87,8 @@ Note: calling kobject_init(), then kobject_add() is functionally
equivalent to calling kobject_register().
When a kobject is unregistered, it is removed from its kset's list,
removed from the sysfs filesystem, and its reference
decremented. List
and sysfs removal happen in kobject_del(), and may be called
removed from the sysfs filesystem, and its reference
count is decremented.
List
and sysfs removal happen in kobject_del(), and may be called
manually. kobject_put() decrements the reference count, and may also
be called manually.
...
...
@@ -98,8 +98,8 @@ kobject_put(). An object's reference count may only be incremented if
it is already positive.
When a kobject's reference count reaches 0, the method struct
k
type::release() (which the kobject's kset points to) is called. This
allows any memory allocated for the object to be freed.
k
obj_type::release() (which the kobject's kset points to) is called.
This
allows any memory allocated for the object to be freed.
1.4 sysfs
...
...
@@ -118,7 +118,7 @@ happen for kobjects that are embedded in a struct subsystem.
2. ksets
2.1 Des
e
cription
2.1 Description
A kset is a set of kobjects that are embedded in the same type.
...
...
@@ -163,9 +163,9 @@ following code snippet illustrates how to properly express this.
kset_register(&disk->kset);
- The kset that the disk's embedded object belongs to is the
block_kset, and is pointed to disk->kset.kobj.kset.
block_kset, and is pointed to
by
disk->kset.kobj.kset.
- The type of object
of
the disk's _subordinate_ list are partitions,
- The type of object
s on
the disk's _subordinate_ list are partitions,
and is set in disk->kset.ktype.
- The kset is then registered, which handles initializing and adding
...
...
@@ -218,13 +218,13 @@ the object-specific fields, which include:
- sysfs_ops: Provides conversion functions for sysfs access. Please
see the sysfs documentation for more information.
- default_attrs: Default attributes to exported via sysfs when the
- default_attrs: Default attributes to
be
exported via sysfs when the
object is registered.
Instances of struct kobj_type are not registered; only referenced by
the kset. A kobj_type may be referenced by an arbitrary number of
ksets, as the
ir
may be disparate sets of identical objects.
ksets, as the
re
may be disparate sets of identical objects.
...
...
drivers/base/base.h
View file @
8a9af19f
extern
struct
semaphore
device_sem
;
extern
int
bus_add_device
(
struct
device
*
dev
);
extern
void
bus_remove_device
(
struct
device
*
dev
);
...
...
drivers/base/core.c
View file @
8a9af19f
...
...
@@ -21,9 +21,6 @@
int
(
*
platform_notify
)(
struct
device
*
dev
)
=
NULL
;
int
(
*
platform_notify_remove
)(
struct
device
*
dev
)
=
NULL
;
DECLARE_MUTEX
(
device_sem
);
/*
* sysfs bindings for devices.
*/
...
...
@@ -180,6 +177,7 @@ void device_remove_file(struct device * dev, struct device_attribute * attr)
void
device_initialize
(
struct
device
*
dev
)
{
kobj_set_kset_s
(
dev
,
devices_subsys
);
kobject_init
(
&
dev
->
kobj
);
INIT_LIST_HEAD
(
&
dev
->
node
);
INIT_LIST_HEAD
(
&
dev
->
children
);
...
...
@@ -214,7 +212,6 @@ int device_add(struct device *dev)
/* first, register with generic layer. */
strncpy
(
dev
->
kobj
.
name
,
dev
->
bus_id
,
KOBJ_NAME_LEN
);
kobj_set_kset_s
(
dev
,
devices_subsys
);
if
(
parent
)
dev
->
kobj
.
parent
=
&
parent
->
kobj
;
...
...
@@ -222,11 +219,11 @@ int device_add(struct device *dev)
goto
register_done
;
/* now take care of our own registration */
if
(
parent
)
{
down
(
&
device_sem
);
down_write
(
&
devices_subsys
.
rwsem
);
if
(
parent
)
list_add_tail
(
&
dev
->
node
,
&
parent
->
children
);
up
(
&
device_sem
);
}
up_write
(
&
devices_subsys
.
rwsem
);
bus_add_device
(
dev
);
...
...
@@ -304,11 +301,10 @@ void device_del(struct device * dev)
{
struct
device
*
parent
=
dev
->
parent
;
if
(
parent
)
{
down
(
&
device_sem
);
down_write
(
&
devices_subsys
.
rwsem
);
if
(
parent
)
list_del_init
(
&
dev
->
node
);
up
(
&
device_sem
);
}
up_write
(
&
devices_subsys
.
rwsem
);
/* Notify the platform of the removal, in case they
* need to do anything...
...
...
fs/sysfs/bin.c
View file @
8a9af19f
...
...
@@ -2,170 +2,118 @@
* bin.c - binary file operations for sysfs.
*/
#include <linux/errno.h>
#include <linux/fs.h>
#include <linux/module.h>
#include <linux/kobject.h>
#include <linux/module.h>
#include <linux/slab.h>
#include <asm/uaccess.h>
#include "sysfs.h"
static
struct
file_operations
bin_fops
;
static
int
fill_read
(
struct
file
*
file
,
struct
sysfs_bin_buffer
*
buffer
)
static
int
fill_read
(
struct
dentry
*
dentry
,
char
*
buffer
,
loff_t
off
,
size_t
count
)
{
struct
bin_attribute
*
attr
=
file
->
f_
dentry
->
d_fsdata
;
struct
kobject
*
kobj
=
file
->
f_
dentry
->
d_parent
->
d_fsdata
;
struct
bin_attribute
*
attr
=
dentry
->
d_fsdata
;
struct
kobject
*
kobj
=
dentry
->
d_parent
->
d_fsdata
;
if
(
!
buffer
->
data
)
attr
->
read
(
kobj
,
buffer
);
return
buffer
->
size
?
0
:
-
ENOENT
;
}
static
int
flush_read
(
struct
file
*
file
,
char
*
userbuf
,
struct
sysfs_bin_buffer
*
buffer
)
{
return
copy_to_user
(
userbuf
,
buffer
->
data
+
buffer
->
offset
,
buffer
->
count
)
?
-
EFAULT
:
0
;
return
attr
->
read
(
kobj
,
buffer
,
off
,
count
);
}
static
ssize_t
read
(
struct
file
*
file
,
char
*
userbuf
,
size_t
count
,
loff_t
*
off
)
{
struct
sysfs_bin_buffer
*
buffer
=
file
->
private_data
;
char
*
buffer
=
file
->
private_data
;
struct
dentry
*
dentry
=
file
->
f_dentry
;
int
size
=
dentry
->
d_inode
->
i_size
;
loff_t
offs
=
*
off
;
int
ret
;
ret
=
fill_read
(
file
,
buffer
);
if
(
ret
)
goto
Done
;
buffer
->
offset
=
*
off
;
if
(
offs
>
size
)
return
0
;
if
(
offs
+
count
>
size
)
count
=
size
-
offs
;
if
(
count
>
(
buffer
->
size
-
*
off
))
count
=
buffer
->
size
-
*
off
;
ret
=
fill_read
(
dentry
,
buffer
,
offs
,
count
);
if
(
ret
<
0
)
goto
Done
;
count
=
ret
;
buffer
->
count
=
count
;
ret
=
-
EFAULT
;
if
(
copy_to_user
(
userbuf
,
buffer
+
offs
,
count
)
!=
0
)
goto
Done
;
ret
=
flush_read
(
file
,
userbuf
,
buffer
);
if
(
!
ret
)
{
*
off
+=
count
;
*
off
=
offs
+
count
;
ret
=
count
;
}
Done:
if
(
buffer
&&
buffer
->
data
)
{
kfree
(
buffer
->
data
);
buffer
->
data
=
NULL
;
}
return
ret
;
}
int
alloc_buf_data
(
struct
sysfs_bin_buffer
*
buffer
)
static
int
flush_write
(
struct
dentry
*
dentry
,
char
*
buffer
,
loff_t
offset
,
size_t
count
)
{
buffer
->
data
=
kmalloc
(
buffer
->
count
,
GFP_KERNEL
);
if
(
buffer
->
data
)
{
memset
(
buffer
->
data
,
0
,
buffer
->
count
);
return
0
;
}
else
return
-
ENOMEM
;
}
struct
bin_attribute
*
attr
=
dentry
->
d_fsdata
;
struct
kobject
*
kobj
=
dentry
->
d_parent
->
d_fsdata
;
static
int
fill_write
(
struct
file
*
file
,
const
char
*
userbuf
,
struct
sysfs_bin_buffer
*
buffer
)
{
return
copy_from_user
(
buffer
->
data
,
userbuf
,
buffer
->
count
)
?
-
EFAULT
:
0
;
}
static
int
flush_write
(
struct
file
*
file
,
const
char
*
userbuf
,
struct
sysfs_bin_buffer
*
buffer
)
{
struct
bin_attribute
*
attr
=
file
->
f_dentry
->
d_fsdata
;
struct
kobject
*
kobj
=
file
->
f_dentry
->
d_parent
->
d_fsdata
;
return
attr
->
write
(
kobj
,
buffer
);
return
attr
->
write
(
kobj
,
buffer
,
offset
,
count
);
}
static
ssize_t
write
(
struct
file
*
file
,
const
char
*
userbuf
,
size_t
count
,
loff_t
*
off
)
{
struct
sysfs_bin_buffer
*
buffer
=
file
->
private_data
;
char
*
buffer
=
file
->
private_data
;
struct
dentry
*
dentry
=
file
->
f_dentry
;
int
size
=
dentry
->
d_inode
->
i_size
;
loff_t
offs
=
*
off
;
int
ret
;
if
(
count
>
PAGE_SIZE
)
count
=
PAGE_SIZE
;
buffer
->
count
=
count
;
ret
=
alloc_buf_data
(
buffer
);
if
(
ret
)
goto
Done
;
if
(
offs
>
size
)
return
0
;
if
(
offs
+
count
>
size
)
count
=
size
-
offs
;
ret
=
fill_write
(
file
,
userbuf
,
buffer
)
;
if
(
ret
)
ret
=
-
EFAULT
;
if
(
copy_from_user
(
buffer
+
offs
,
userbuf
,
count
)
)
goto
Done
;
ret
=
flush_write
(
file
,
userbuf
,
buffer
);
if
(
ret
>
0
)
*
off
+=
count
;
count
=
flush_write
(
dentry
,
buffer
,
offs
,
count
);
if
(
count
>
0
)
*
off
=
offs
+
count
;
ret
=
0
;
Done:
if
(
buffer
->
data
)
{
kfree
(
buffer
->
data
);
buffer
->
data
=
NULL
;
}
return
ret
;
}
static
int
check_perm
(
struct
inode
*
inode
,
struct
file
*
file
)
static
int
open
(
struct
inode
*
inode
,
struct
file
*
file
)
{
struct
kobject
*
kobj
=
kobject_get
(
file
->
f_dentry
->
d_parent
->
d_fsdata
);
struct
bin_attribute
*
attr
=
file
->
f_dentry
->
d_fsdata
;
struct
sysfs_bin_buffer
*
buffer
;
int
error
=
0
;
int
error
=
-
EINVAL
;
if
(
!
kobj
||
!
attr
)
goto
Einval
;
/* File needs write support.
* The inode's perms must say it's ok,
* and we must have a store method.
*/
if
(
file
->
f_mode
&
FMODE_WRITE
)
{
if
(
!
(
inode
->
i_mode
&
S_IWUGO
)
||
!
attr
->
write
)
goto
Eaccess
;
}
goto
Done
;
/* File needs read support.
* The inode's perms must say it's ok, and we there
* must be a show method for it.
*/
if
(
file
->
f_mode
&
FMODE_READ
)
{
if
(
!
(
inode
->
i_mode
&
S_IRUGO
)
||
!
attr
->
read
)
goto
Eaccess
;
}
error
=
-
EACCES
;
if
((
file
->
f_mode
&
FMODE_WRITE
)
&&
!
attr
->
write
)
goto
Done
;
if
((
file
->
f_mode
&
FMODE_READ
)
&&
!
attr
->
read
)
goto
Done
;
buffer
=
kmalloc
(
sizeof
(
struct
sysfs_bin_buffer
),
GFP_KERNEL
);
if
(
buffer
)
{
memset
(
buffer
,
0
,
sizeof
(
struct
sysfs_bin_buffer
));
file
->
private_data
=
buffer
;
}
else
error
=
-
ENOMEM
;
file
->
private_data
=
kmalloc
(
attr
->
size
,
GFP_KERNEL
);
if
(
!
file
->
private_data
)
goto
Done
;
Einval:
error
=
-
EINVAL
;
goto
Done
;
Eaccess:
error
=
-
EACCES
;
error
=
0
;
Done:
if
(
error
&&
kobj
)
kobject_put
(
kobj
);
return
error
;
}
static
int
open
(
struct
inode
*
inode
,
struct
file
*
file
)
{
return
check_perm
(
inode
,
file
);
}
static
int
release
(
struct
inode
*
inode
,
struct
file
*
file
)
{
struct
kobject
*
kobj
=
file
->
f_dentry
->
d_parent
->
d_fsdata
;
...
...
@@ -173,7 +121,6 @@ static int release(struct inode * inode, struct file * file)
if
(
kobj
)
kobject_put
(
kobj
);
if
(
buffer
)
kfree
(
buffer
);
return
0
;
}
...
...
include/linux/device.h
View file @
8a9af19f
...
...
@@ -29,13 +29,14 @@
#include <linux/list.h>
#include <linux/spinlock.h>
#include <linux/types.h>
#include <linux/ioport.h>
#include <asm/semaphore.h>
#include <asm/atomic.h>
#define DEVICE_NAME_SIZE 50
#define DEVICE_NAME_HALF __stringify(20)
/* Less than half to accommodate slop */
#define DEVICE_ID_SIZE 32
#define BUS_ID_SIZE
20
#define BUS_ID_SIZE
KOBJ_NAME_LEN
enum
{
...
...
@@ -388,6 +389,8 @@ struct platform_device {
char
*
name
;
u32
id
;
struct
device
dev
;
struct
resource
res
;
unsigned
int
irq
;
};
extern
int
platform_device_register
(
struct
platform_device
*
);
...
...
include/linux/sysfs.h
View file @
8a9af19f
...
...
@@ -16,18 +16,11 @@ struct attribute {
mode_t
mode
;
};
struct
sysfs_bin_buffer
{
u8
*
data
;
size_t
size
;
size_t
count
;
loff_t
offset
;
};
struct
bin_attribute
{
struct
attribute
attr
;
size_t
size
;
ssize_t
(
*
read
)(
struct
kobject
*
,
struct
sysfs_bin_buffer
*
);
ssize_t
(
*
write
)(
struct
kobject
*
,
struct
sysfs_bin_buffer
*
);
ssize_t
(
*
read
)(
struct
kobject
*
,
char
*
,
loff_t
,
size_t
);
ssize_t
(
*
write
)(
struct
kobject
*
,
char
*
,
loff_t
,
size_t
);
};
struct
sysfs_ops
{
...
...
lib/kobject.c
View file @
8a9af19f
...
...
@@ -290,7 +290,11 @@ int kobject_register(struct kobject * kobj)
if
(
kobj
)
{
kobject_init
(
kobj
);
error
=
kobject_add
(
kobj
);
WARN_ON
(
error
);
if
(
error
)
{
printk
(
"kobject_register failed for %s (%d)
\n
"
,
kobj
->
name
,
error
);
dump_stack
();
}
}
else
error
=
-
EINVAL
;
return
error
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment