{"test_dynptr_is_null", SETUP_SYSCALL_SLEEP},
        {"test_dynptr_is_rdonly", SETUP_SKB_PROG},
        {"test_dynptr_clone", SETUP_SKB_PROG},
+       {"test_dynptr_skb_no_buff", SETUP_SKB_PROG},
 };
 
 static void verify_success(const char *prog_name, enum test_setup_type setup_type)
 
 
        return 0;
 }
+
+SEC("?cgroup_skb/egress")
+int test_dynptr_skb_no_buff(struct __sk_buff *skb)
+{
+       struct bpf_dynptr ptr;
+       __u64 *data;
+
+       if (bpf_dynptr_from_skb(skb, 0, &ptr)) {
+               err = 1;
+               return 1;
+       }
+
+       /* This may return NULL. SKB may require a buffer */
+       data = bpf_dynptr_slice(&ptr, 0, NULL, 1);
+
+       return !!data;
+}