We are running a survey to help us improve the experience for all of our members. If you see the survey appear, please take the time to tell us about your experience if you can.
http://forums.arm.co...807-dmb-vs-dsb/
No, the DMB is a sub-set of the DSB behavior. However if you are performing cache maintenance operations, then a DSB is what you want to use, not a DMB. You want to ensure that the instruction's behavior has completed executing (i.e. cache maintenance complete) before executing following instructions. The DMB instruction is only really concerned with explicit memory accesses (loads and stores), which is why it doesn't help for cache maintenance.
Does DMB execute something that DSB does not perform?