Message ID | cover.1605027593.git.skhan@linuxfoundation.org (mailing list archive) |
---|---|
Headers | show |
Series | Introduce seqnum_ops | expand |
On Tue, Nov 10, 2020 at 12:53:26PM -0700, Shuah Khan wrote: > There are a number of atomic_t usages in the kernel where atomic_t api > is used strictly for counting sequence numbers and other statistical > counters and not for managing object lifetime. > > The purpose of these Sequence Number Ops is to clearly differentiate > atomic_t counter usages from atomic_t usages that guard object lifetimes, > hence prone to overflow and underflow errors. > > The atomic_t api provides a wide range of atomic operations as a base > api to implement atomic counters, bitops, spinlock interfaces. The usages > also evolved into being used for resource lifetimes and state management. > The refcount_t api was introduced to address resource lifetime problems > related to atomic_t wrapping. There is a large overlap between the > atomic_t api used for resource lifetimes and just counters, stats, and > sequence numbers. It has become difficult to differentiate between the > atomic_t usages that should be converted to refcount_t and the ones that > can be left alone. Introducing seqnum_ops to wrap the usages that are > stats, counters, sequence numbers makes it easier for tools that scan > for underflow and overflow on atomic_t usages to detect overflow and > underflows to scan just the cases that are prone to errors. > > Sequence Number api provides interfaces for simple atomic_t counter usages > that just count, and don't guard resource lifetimes. The seqnum_ops are > built on top of atomic_t api, providing a smaller subset of atomic_t > interfaces necessary to support atomic_t usages as simple counters. > This api has init/set/inc/dec/read and doesn't support any other atomic_t > ops with the intent to restrict the use of these interfaces as simple > counting usages. > > Sequence Numbers wrap around to INT_MIN when it overflows and should not > be used to guard resource lifetimes, device usage and open counts that > control state changes, and pm states. Overflowing to INT_MIN is consistent > with the atomic_t api, which it is built on top of. If Sequence Numbers are subject to wraparound then they aren't reliable. Given that they aren't reliable, why use atomic instructions at all? Why not just use plain regular integers with READ_ONCE and WRITE_ONCE? Alan Stern
On 11/10/20 1:44 PM, Alan Stern wrote: > On Tue, Nov 10, 2020 at 12:53:26PM -0700, Shuah Khan wrote: >> There are a number of atomic_t usages in the kernel where atomic_t api >> is used strictly for counting sequence numbers and other statistical >> counters and not for managing object lifetime. >> >> The purpose of these Sequence Number Ops is to clearly differentiate >> atomic_t counter usages from atomic_t usages that guard object lifetimes, >> hence prone to overflow and underflow errors. >> >> The atomic_t api provides a wide range of atomic operations as a base >> api to implement atomic counters, bitops, spinlock interfaces. The usages >> also evolved into being used for resource lifetimes and state management. >> The refcount_t api was introduced to address resource lifetime problems >> related to atomic_t wrapping. There is a large overlap between the >> atomic_t api used for resource lifetimes and just counters, stats, and >> sequence numbers. It has become difficult to differentiate between the >> atomic_t usages that should be converted to refcount_t and the ones that >> can be left alone. Introducing seqnum_ops to wrap the usages that are >> stats, counters, sequence numbers makes it easier for tools that scan >> for underflow and overflow on atomic_t usages to detect overflow and >> underflows to scan just the cases that are prone to errors. >> >> Sequence Number api provides interfaces for simple atomic_t counter usages >> that just count, and don't guard resource lifetimes. The seqnum_ops are >> built on top of atomic_t api, providing a smaller subset of atomic_t >> interfaces necessary to support atomic_t usages as simple counters. >> This api has init/set/inc/dec/read and doesn't support any other atomic_t >> ops with the intent to restrict the use of these interfaces as simple >> counting usages. >> >> Sequence Numbers wrap around to INT_MIN when it overflows and should not >> be used to guard resource lifetimes, device usage and open counts that >> control state changes, and pm states. Overflowing to INT_MIN is consistent >> with the atomic_t api, which it is built on top of. > > If Sequence Numbers are subject to wraparound then they aren't reliable. > Given that they aren't reliable, why use atomic instructions at all? > Why not just use plain regular integers with READ_ONCE and WRITE_ONCE? > You still need atomic update for these numbers. The intent is to provide atomic api for cases where the variable doesn't guard lifetimes and yet needs atomic instructions. Several such usages where atomic_t is used for up counting, also use upper bounds. It is also an option to switch to seqnum64 to avoid wrap around in case there is a concern. thanks, -- Shuah
On Tue, Nov 10, 2020 at 12:53:26PM -0700, Shuah Khan wrote: > There are a number of atomic_t usages in the kernel where atomic_t api > is used strictly for counting sequence numbers and other statistical > counters and not for managing object lifetime. We already have something in Linux called a sequence counter, and it's different from this. ID counter? instance number? monotonic_t? stat_t?
On 11/10/20 9:33 PM, Matthew Wilcox wrote: > On Tue, Nov 10, 2020 at 12:53:26PM -0700, Shuah Khan wrote: >> There are a number of atomic_t usages in the kernel where atomic_t api >> is used strictly for counting sequence numbers and other statistical >> counters and not for managing object lifetime. > > We already have something in Linux called a sequence counter, and it's > different from this. ID counter? instance number? monotonic_t? stat_t? > No results for monotonic_t or stat_t. Can you give me a pointer to what your referring to. thanks, -- Shuah
On Wed, Nov 11, 2020 at 09:03:20AM -0700, Shuah Khan wrote: > On 11/10/20 9:33 PM, Matthew Wilcox wrote: > > On Tue, Nov 10, 2020 at 12:53:26PM -0700, Shuah Khan wrote: > > > There are a number of atomic_t usages in the kernel where atomic_t api > > > is used strictly for counting sequence numbers and other statistical > > > counters and not for managing object lifetime. > > > > We already have something in Linux called a sequence counter, and it's > > different from this. ID counter? instance number? monotonic_t? stat_t? > > > > No results for monotonic_t or stat_t. Can you give me a pointer to what > your referring to. We have a seqcount_t. We need to call this something different. maybe we should call it stat_t (and for that usage, stat_add() as well as stat_inc() is a legitimate API to have).