diff options
author | Linus Torvalds <torvalds@linux-foundation.org> | 2014-07-04 03:53:13 +0200 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2014-07-04 03:53:13 +0200 |
commit | 3089f54a7928d28645661c2f3d829e3939d60dd3 (patch) | |
tree | 5709fd26998109924da0f2e27154413980b201af /include | |
parent | Merge tag 'trace-fixes-v3.16-rc3' of git://git.kernel.org/pub/scm/linux/kerne... (diff) | |
parent | lz4: add overrun checks to lz4_uncompress_unknownoutputsize() (diff) | |
download | linux-3089f54a7928d28645661c2f3d829e3939d60dd3.tar.xz linux-3089f54a7928d28645661c2f3d829e3939d60dd3.zip |
Merge tag 'driver-core-3.16-rc4' of git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core
Pull driver core fixes from Greg KH:
"Well, one drivercore fix for kernfs to resolve a reported issue with
sysfs files being updated from atomic contexts, and another lz4 bugfix
for testing potential buffer overflows"
* tag 'driver-core-3.16-rc4' of git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core:
lz4: add overrun checks to lz4_uncompress_unknownoutputsize()
kernfs: kernfs_notify() must be useable from non-sleepable contexts
Diffstat (limited to 'include')
-rw-r--r-- | include/linux/kernfs.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/linux/kernfs.h b/include/linux/kernfs.h index 17aa1cce6f8e..145375ea0bd9 100644 --- a/include/linux/kernfs.h +++ b/include/linux/kernfs.h @@ -91,6 +91,7 @@ struct kernfs_elem_attr { const struct kernfs_ops *ops; struct kernfs_open_node *open; loff_t size; + struct kernfs_node *notify_next; /* for kernfs_notify() */ }; /* |