#!/bin/sh
# Review before sending:
#   - Adjust --smtp-server / --smtp-user if not already configured
#     in ~/.gitconfig
#   - --annotate opens the email in $EDITOR for a final review before send

git send-email \
    --annotate \
    --from="$(git config user.name) <$(git config user.email)>" \
    --in-reply-to="<69eab803.a00a0220.17a17.004b.GAE@google.com>" \
    --to="linux-mm@kvack.org" \
    --cc="syzbot+9722a25de70a85ff48a1@syzkaller.appspotmail.com" \
    --cc="akpm@linux-foundation.org" \
    --cc="baolin.wang@linux.alibaba.com" \
    --cc="hughd@google.com" \
    --cc="linux-kernel@vger.kernel.org" \
    --cc="syzkaller-bugs@googlegroups.com" \
    "$(dirname "$0")/analysis-email.txt"
