struct alloc_tag_counters __percpu      *counters;
 } __aligned(8);
 
+#ifdef CONFIG_MEM_ALLOC_PROFILING_DEBUG
+
+#define CODETAG_EMPTY  ((void *)1)
+
+static inline bool is_codetag_empty(union codetag_ref *ref)
+{
+       return ref->ct == CODETAG_EMPTY;
+}
+
+static inline void set_codetag_empty(union codetag_ref *ref)
+{
+       if (ref)
+               ref->ct = CODETAG_EMPTY;
+}
+
+#else /* CONFIG_MEM_ALLOC_PROFILING_DEBUG */
+
+static inline bool is_codetag_empty(union codetag_ref *ref) { return false; }
+
+#endif /* CONFIG_MEM_ALLOC_PROFILING_DEBUG */
+
 #ifdef CONFIG_MEM_ALLOC_PROFILING
 
 struct codetag_bytes {
        if (!ref || !ref->ct)
                return;
 
+       if (is_codetag_empty(ref)) {
+               ref->ct = NULL;
+               return;
+       }
+
        tag = ct_to_alloc_tag(ref->ct);
 
        this_cpu_sub(tag->counters->bytes, bytes);
 
 
 #ifdef CONFIG_SLAB_OBJ_EXT
 
+#ifdef CONFIG_MEM_ALLOC_PROFILING_DEBUG
+
+static inline void mark_objexts_empty(struct slabobj_ext *obj_exts)
+{
+       struct slabobj_ext *slab_exts;
+       struct slab *obj_exts_slab;
+
+       obj_exts_slab = virt_to_slab(obj_exts);
+       slab_exts = slab_obj_exts(obj_exts_slab);
+       if (slab_exts) {
+               unsigned int offs = obj_to_index(obj_exts_slab->slab_cache,
+                                                obj_exts_slab, obj_exts);
+               /* codetag should be NULL */
+               WARN_ON(slab_exts[offs].ref.ct);
+               set_codetag_empty(&slab_exts[offs].ref);
+       }
+}
+
+#else /* CONFIG_MEM_ALLOC_PROFILING_DEBUG */
+
+static inline void mark_objexts_empty(struct slabobj_ext *obj_exts) {}
+
+#endif /* CONFIG_MEM_ALLOC_PROFILING_DEBUG */
+
 /*
  * The allocated objcg pointers array is not accounted directly.
  * Moreover, it should not come from DMA buffer and is not readily
                 * assign slabobj_exts in parallel. In this case the existing
                 * objcg vector should be reused.
                 */
+               mark_objexts_empty(vec);
                kfree(vec);
                return 0;
        }
        if (!obj_exts)
                return;
 
+       /*
+        * obj_exts was created with __GFP_NO_OBJ_EXT flag, therefore its
+        * corresponding extension will be NULL. alloc_tag_sub() will throw a
+        * warning if slab has extensions but the extension of an object is
+        * NULL, therefore replace NULL with CODETAG_EMPTY to indicate that
+        * the extension for obj_exts is expected to be NULL.
+        */
+       mark_objexts_empty(obj_exts);
        kfree(obj_exts);
        slab->obj_exts = 0;
 }